Sections
Configuring sections in Konstrukt, the back office UI builder for Umbraco.

Defining a section
AddSection(string name, Lambda sectionConfig = null) : KonstruktSectionConfigBuilder
AddSectionBefore(string beforeAlias, string name, Lambda sectionConfig = null) : KonstruktSectionConfigBuilder
AddSectionAfter(string afterAlias, string name, Lambda sectionConfig = null) : KonstruktSectionConfigBuilder
Changing a section alias
SetAlias(string alias) : KonstruktSectionConfigBuilder
Configuring the section tree
Tree(Lambda treeConfig = null) : KonstruktTreeConfigBuilder
Adding a dashboard to the section
AddDashboard(string name, Lambda dashboardConfig = null) : KonstruktDashboardConfigBuilder
AddDashboardBefore(string beforeAlias, string name, Lambda dashboardConfig = null) : KonstruktDashboardConfigBuilder
AddDashboardAfter(string afterAlias, string name, Lambda dashboardConfig = null) : KonstruktDashboardConfigBuilder
Extending an existing section
WithSection(string alias, Lambda sectionConfig = null) : KonstruktWithSectionConfigBuilder
Adding a tree to an existing section
AddTree(string name, string icon, Lambda treeConfig = null) : KonstruktTreeConfigBuilder
AddTree(string groupName, string name, string icon, Lambda treeConfig = null) : KonstruktTreeConfigBuilder
AddTreeBefore(string treeAlias, string name, string icon, Lambda treeConfig = null) : KonstruktTreeConfigBuilder
AddTreeAfter(string treeAlias, string name, string icon, Lambda treeConfig = null) : KonstruktTreeConfigBuilder
Adding a dashboard to an existing section
AddDashboard(string name, Lambda dashboardConfig = null) : KonstruktDashboardConfigBuilder
AddDashboardBefore(string beforeAlias, string name, Lambda dashboardConfig = null) : KonstruktDashboardConfigBuilder
AddDashboardAfter(string afterAlias, string name, Lambda dashboardConfig = null) : KonstruktDashboardConfigBuilder
Last updated