Configuring a summary dashboard in Umbraco UI Builder, the backoffice UI builder for Umbraco.
A summary dashboard is automatically displayed at the root of a defined Umbraco UI Builder section. It displays summaries of collections found within it that are told to display on the dashboard. It also provides quick links to jump to that collections list view. It can also add quickly a new entry to that collection (if the collection isn't read-only).
Showing a collection in the summary dashboard is controlled via the collection configuration.
Sets the collection to display on the summary dashboard.
Only section root level collections can be shown on the summary dashboard.
Configuring sections in Umbraco UI Builder, the backoffice UI builder for Umbraco.
A section is a distinct area of the Umbraco backoffice, such as content, media, etc. The section is accessed via a link in the main menu at the top of the Umbraco interface. Umbraco UI Builder allows you to define multiple sections in order to organise the management of your models into logical sections.
You can define a section by calling one of the AddSection
methods on the root level UIBuilderConfigBuilder
instance.
Adds a section to the Umbraco menu with the given name.
Adds a section to the Umbraco menu with the given name before the section with the given alias.
Adds a section to the Umbraco menu with the given name after the section with the given alias.
Sets the alias of the section.
Optional: When adding a new section, 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.
Accesses the tree config of the current section. For more information check the Trees documentation.
Adds a dashboard with the given name. For more information check the Dashboards documentation.
Adds a dashboard with the given name before the dashboard with the given alias. For more information check the Dashboards documentation.
Adds a dashboard with the given name after the dashboard with the given alias. For more information check the Dashboards documentation.
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.
Starts a sub-configuration for the existing Umbraco section with the given alias.
Adds a tree to the current section. For more information check the Trees documentation.
Adds a tree to the current section in a group with the given name. For more information check the Trees documentation.
Adds a tree to the current section before the tree with the given alias. For more information check the Trees documentation.
Adds a tree to the current section after the tree with the given alias. For more information check the Trees documentation.
Adds a dashboard with the given name. For more information check the Dashboards documentation.
Adds a dashboard with the given name before the dashboard with the given alias. For more information check the Dashboards documentation.
Adds a dashboard with the given name after the dashboard with the given alias. For more information check the Dashboards documentation.