You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Example: Using the `Tree()` Method for Configuration
71
+
### Using the `Tree()` Method for Configuration
68
72
69
73
This method configures the tree structure for the section, which is used to organize content types. For more information, see the [Trees](trees.md) article.
### Example: Adding a Dashboard with `AddDashboard()`
85
+
### Adding a Dashboard with the `AddDashboard()` Method
82
86
83
87
This method adds a dashboard to the section with the specified alias, providing tools and features for content management. For more information, see the [Dashboards](dashboards.md) article.
### Example: Using `AddDashboardBefore()` to Place a Dashboard
97
+
### Using `AddDashboardBefore()` to Place a Dashboard
94
98
95
99
This method adds a dashboard before another dashboard with the specified alias, allowing custom placement in the section. For more information, see the [Dashboards](dashboards.md) article.
### Example: Using `AddDashboardAfter()` to Place a Dashboard
109
+
### Using `AddDashboardAfter()` to Place a Dashboard
106
110
107
111
This method adds a dashboard after another dashboard with the specified alias, giving control over dashboard order. For more information, see the [Dashboards](dashboards.md) article.
You can extend existing sections by adding Umbraco UI Builder trees and dashboards, context apps, and virtual subtrees. This can be done by calling the `WithSection` method on the root-level `UIBuilderConfigBuilder` instance.
120
124
121
-
### Example: Extending an Existing Section with `WithSection()`
125
+
### Extending an Existing Section with `WithSection()`
122
126
123
127
This method extends an existing section with additional configuration, enabling more customization for existing areas.
### Example: Grouping Trees with `AddTree()` Method
151
+
### Grouping Trees with `AddTree()` Method
148
152
149
153
This method adds a tree within a specified group, improving content organization by grouping related trees together. For more information, see the [Trees](trees.md) article.
### Example: Using `AddTreeBefore()` to Position a Tree
165
+
### Using `AddTreeBefore()` to Position a Tree
162
166
163
167
This method adds a tree before another tree within the section, allowing you to customize the tree order. For more information, see the [Trees](trees.md) article.
164
168
@@ -170,7 +174,7 @@ withSectionConfig.AddTreeBefore("member", "My Tree", "icon-folder", treeConfig =
### Example: Using `AddTreeAfter()` to Position a Tree
177
+
### Using `AddTreeAfter()` to Position a Tree
174
178
175
179
This method adds a tree after another tree within the section, enabling specific ordering of trees. For more information, see the [Trees](trees.md) article.
176
180
@@ -184,7 +188,7 @@ withSectionConfig.AddTreeAfter("member", "My Tree", "icon-folder", treeConfig =>
184
188
185
189
## Adding a Dashboard to an Existing Section
186
190
187
-
### Example: Using the `AddDashboard()` Method
191
+
### Using the `AddDashboard()` Method
188
192
189
193
This method adds a new dashboard to the section with the specified name. For more information, see the [Dashboards](dashboards.md) article.
0 commit comments