what about read-only field with group name page header (just specualting, haven't tested)?
public class Page : PageData
{
[ReadOnly]
[Display(GroupName = SystemTabNames.PageHeader)]
public virtual string FullUrl
{
get
{
// return url via UrlResovler
}
}
}
Hi all,
We have a request to show the full URL of an image in the epi-cmsEditing form: http://prntscr.com/fjklry
We don't want to be able to change this path, if more for information proposes.
How we can do this?