Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
If grouped properties are to be used in a single tab i would advise using Local Blocks for achieving this, and than using the local block in your Page or Block Model.
e.g.
[ContentType(DisplayName = "Meta Data Block",
AvailableInEditMode = false)]
public class MetaDataBlock : BlockData
{
[ContentType(
DisplayName = "Home Page",
Description = "Site Home Page",
public class HomePage : SiteBasePage
{
[Display(Name = "Meta Data", Order = 400)]
public virtual MetaDataBlock MetaData {get;set;
If local blocks do not suit your needs, check out my blog post:
https://www.gulla.net/episerver-help-texts-improved/
These can be placed in-between other properties. You may customize this to look more like a heading if you like.
The blog post shows step by step, how I created this.
There is no tooltip in the final result.
I want to provide headings for a set of properties present in a single tab.
How to do that?