Trees
Configuring trees in Umbraco UI Builder, the backoffice UI builder for Umbraco.

Configuring a Umbraco UI Builder section tree
Tree(Lambda treeConfig = null) : TreeConfigBuilder
Adding a tree to an existing section
AddTree(string name, string icon, Lambda treeConfig = null) : TreeConfigBuilder
AddTree(string groupName, string name, string icon, Lambda treeConfig = null) : TreeConfigBuilder
AddTreeBefore(string treeAlias, string name, string icon, Lambda treeConfig = null) : TreeConfigBuilder
AddTreeAfter(string treeAlias, string name, string icon, Lambda treeConfig = null) : TreeConfigBuilder
Changing the tree icon color
SetIconColor(string color) : TreeConfigBuilder
Adding a group to a tree
AddGroup(string name, Lambda groupConfig = null) : GroupConfigBuilder
Adding a folder to a tree/group
AddFolder(string name, Lambda folderConfig = null) : FolderConfigBuilder
AddFolder(string name, string icon, Lambda folderConfig = null) : FolderConfigBuilder
Adding a collection to a tree/group
AddCollection<TEntityType>(Lambda idFieldExpression, string nameSingular, string namePlural, string description, Lambda collectionConfig = null) : CollectionConfigBuilder<TEntityType>
AddCollection<TEntityType>(Lambda idFieldExpression, string nameSingular, string namePlural, string description, string iconSingular, string iconPlural, Lambda collectionConfig = null) : CollectionConfigBuilder<TEntityType>
Extending an existing tree
WithTree(string alias, Lambda treeConfig = null) : WithTreeConfigBuilder
Adding a context app to an existing tree
AddContextApp(string name, Lambda contextAppConfig = null) : ContextAppConfigBuilder
AddContextApp(string name, string icon, Lambda contextAppConfig = null) : ContextAppConfigBuilder
AddContextAppBefore(string beforeAlias, string name, Lambda contextAppConfig = null) : ContextAppConfigBuilder
AddContextAppBefore(string beforeAlias, string name, string icon, Lambda contextAppConfig = null) : ContextAppConfigBuilder
AddContextAppAfter(string afterAlias, string name, Lambda contextAppConfig = null) : ContextAppConfigBuilder
AddContextAppAfter(string afterAlias, string name, string icon, Lambda contextAppConfig = null) : ContextAppConfigBuilder
Last updated
Was this helpful?