Section Sidebar
This page is a work in progress and may undergo further revisions, updates, or amendments. The information contained herein is subject to change without notice.
Section Sidebar Apps
Manifest
{
"type": "sectionSidebarApp",
"alias": "My.SectionSidebarApp",
"name": "My Section Sidebar App",
"meta": {
"sections": ["My.Section"]
}
}
Default Element
interface UmbSectionSidebarAppElement {}
Menu Sidebar App
Sidebar Menu:
The Backoffice comes with a menu sidebar app that can be used to create a menu in the sidebar.
To register a new menu sidebar app, add the following to your manifest
The menu sidebar app will reference a menu that you have registered in the menu with a menu manifest
Manifest
{
"type": "sectionSidebarApp",
"kind": "menu",
"alias": "My.SectionSidebarApp.MyMenu",
"name": "My Menu Section Sidebar App",
"meta": {
"label": "My Sidebar Menu",
"menu": "My.Menu"
},
"conditions": [
{
"alias": "Umb.Condition.SectionAlias",
"match": "My.Section"
}
]
}
Default Element
interface UmbMenuSectionSidebarAppElement {}
Adding Items to an existing menu
This will make it possible to compose a sidebar menu from multiple Apps:
You can read more about this in the Menu article.
Last updated
Was this helpful?