AI OnAI Off
Found solution.
In the EPiServer DB table [tblPageDefinitionGroup] tabs have different names (EX: "Settings" - "Advanced"; "Content" - "Information"). And there should be exact match in builder's tab name
public class AdvancedTab : Tab
{
public override string Name
{
get { return "Advanced"; }
}
....
}
Hi.
Does anyone know how to add new property using PageTypeBuilder to existing in EPiServer tab. (EX: "Settings", "Shortcut" etc.)
Thanks in advance.