November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Hi,
There's nothing out of the box for that as far as I know. My guess is that it's possible but will require you to hook in a custom javascript/dojo module that replaces or modifies the component that displays editors and names for properties in forms mode.
If you wanted to display description for a particular property, you could create a new editor widget that shows description beneath(beside) the default one then connect it to your property using UIHint.
If you meant showing description for all properties, you would need to change the default group container in content metadata. That would require a lot of work which unfortunately not documented.
I have this property data:
[Display(GroupName = "Details", Order = 2, Description = "Some text here")]
public virtual string Header{ get; set; }
You can see this description when hover mouse on property name, but I want to take this and display on UI CMS (on Forms Editing).
Do you have any ideas, how can I do this?
Thank you.