Folders
Configuring folders to organise trees in Umbraco UI Builder, the backoffice UI builder for Umbraco.
Last updated
Configuring folders to organise trees in Umbraco UI Builder, the backoffice UI builder for Umbraco.
Last updated
A folder can appear in either a tree or as a sub folder to other folders. Folders can contain either other (sub)folders or collections.
You can define a folder by calling one of the AddFolder
methods on a given Tree
or parent Folder
config builder instance.
Adds a folder to the current tree with the given name and a default folder icon.
Adds a folder to the current tree with the given name + icon.
Sets the alias of the folder.
Optional: When creating a new folder, an alias is automatically generated from the supplied name for you. However, if you need a specific alias you can use the SetAlias
method to override this.
Sets the folder icon color to the given color. The options that are possible are black
, green
, yellow
, orange
, blue
or red
.
Adds a sub folder to the current folder with the given name and a default folder icon.
Adds a sub folder to the current folder with the given name + icon.
Adds a collection to the current folder with the given names, descriptions, and default icons. An ID property accessor expression is required so that Umbraco UI Builder knows which property is the ID property. For more information check the Collections documentation.
Adds a collection to the current folder with the given names, description and icons. An ID property accessor expression is required so that Umbraco UI Builder knows which property is the ID property. For more information check the Collections documentation.