Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1017 Bytes

summary-dashboards.md

File metadata and controls

26 lines (17 loc) · 1017 Bytes
description
Configuring a summary dashboard in Umbraco UI Builder, the backoffice UI builder for Umbraco.

Summary Dashboards

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).

Summary Dashboard

Showing a collection on a summary dashboard

Showing a collection in the summary dashboard is controlled via the collection configuration.

ShowOnSummaryDashboard() : CollectionConfigBuilder<TEntityType>

Sets the collection to display on the summary dashboard.

// Example
collectionConfig.ShowOnSummaryDashboard();

{% hint style="warning" %} Only section root level collections can be shown on the summary dashboard. {% endhint %}