Hi,
I'm play around with creating Areas and Sections but cannot get a section to render. I have looket at the documentation and the examples but something must be missing.
I have tried with a simple example:
The Area:
public class CustomArea : AreaBase { public CustomArea() { Name = "En area"; Icon = Icon.Folder; Sort = 30; } }
And the Section:
public class CustomSection : NavigationSection<CustomArea> { public CustomSection(NavigationContext context) : base(context) { Name = "En sektion"; Sort = 30; PermissionLevelRequired = Dynamicweb.Security.Permissions.PermissionLevel.All; } }
Shouldn't that be enough to render the section label "En sektion" in the area?
Is it possbile to provade some working examples of creating an Area, Sections and a simple Screen?
Regards / Aki