TieredMenu displays submenus in nested overlays.
import { TieredMenuModule } from 'primeng/tieredmenu';
TieredMenu requires a collection of menuitems as its model.
<p-tieredMenu [model]="items" />
Popup mode is enabled by adding popup property and calling toggle method with an event of the target.
<p-button label="Toggle" (onClick)="menu.toggle($event)" />
<p-tieredMenu #menu [model]="items" [popup]="true" />
TieredMenu offers item customization with the item template that receives the menuitem instance from the model as a parameter.
<p-tieredMenu [model]="items">
<ng-template pTemplate="item" let-item let-hasSubmenu="hasSubmenu">
<a pRipple class="flex align-items-center p-menuitem-link">
<span [class]="item.icon" class="p-menuitem-icon"></span>
<span class="ml-2">{{ item.label }}</span>
<p-badge *ngIf="item.badge" class="ml-auto" [value]="item.badge" />
<span *ngIf="item.shortcut" class="ml-auto border-1 surface-border border-round surface-100 text-xs p-1">
{{ item.shortcut }}
</span>
<i *ngIf="hasSubmenu" class="pi pi-angle-right ml-auto text-primary"></i>
</a>
</ng-template>
</p-tieredMenu>
The command property defines the callback to run when an item is activated by click or a key event.
<p-toast/>
<p-tieredMenu [model]="items" />
Items with navigation are defined with templating to be able to use a router link component, an external link or programmatic navigation.
<p-tieredMenu [model]="items">
<ng-template pTemplate="item" let-item let-hasSubmenu="hasSubmenu">
<ng-container *ngIf="item.route; else withoutRoute">
<a [routerLink]="item.route" [href]="item.href" class="p-menuitem-link">
<span class="item.icon"></span>
<span class="ml-2">{{ item.label }}</span>
</a>
</ng-container>
<ng-template #withoutRoute>
<ng-container *ngIf="item.url; else withoutUrl">
<a [href]="item.url" [target]="item.target" class="p-menuitem-link">
<span [class]="item.icon"></span>
<span class="ml-2">{{ item.label }}</span>
<span *ngIf="hasSubmenu" class="pi pi-angle-right ml-auto"></span>
</a>
</ng-container>
<ng-template #withoutUrl>
<a class="p-menuitem-link">
<span [class]="item.icon"></span>
<span class="ml-2">{{ item.label }}</span>
<span *ngIf="hasSubmenu" class="pi pi-angle-right ml-auto"></span>
</a>
</ng-template>
</ng-template>
</ng-template>
</p-tieredMenu>
Following is the list of structural style classes, for theming classes visit theming page.
Name | Element |
---|---|
p-tieredmenu | Container element. |
p-menu-list | List element. |
p-menuitem | Menuitem element. |
p-menuitem-text | Label of a menuitem. |
p-menuitem-icon | Icon of a menuitem. |
p-submenu-icon | Arrow icon of a submenu. |
TieredMenu component uses the menubar role with aria-orientation set to "vertical" and the value to describe the menu can either be provided with aria-labelledby or aria-label props. Each list item has a presentation role whereas anchor elements have a menuitem role with aria-label referring to the label of the item and aria-disabled defined if the item is disabled. A submenu within a TieredMenu uses the menu role with an aria-labelledby defined as the id of the submenu root menuitem label. In addition, menuitems that open a submenu have aria-haspopup, aria-expanded and aria-controls to define the relation between the item and the submenu.
In popup mode, the component implicitly manages the aria-expanded, aria-haspopup and aria-controls attributes of the target element to define the relation between the target and the popup.
Key | Function |
---|---|
tab | Add focus to the first item if focus moves in to the menu. If the focus is already within the menu, focus moves to the next focusable item in the page tab sequence. |
shift + tab | Add focus to the last item if focus moves in to the menu. If the focus is already within the menu, focus moves to the previous focusable item in the page tab sequence. |
enter | If menuitem has a submenu, toggles the visibility of the submenu otherwise activates the menuitem and closes all open overlays. |
space | If menuitem has a submenu, toggles the visibility of the submenu otherwise activates the menuitem and closes all open overlays. |
escape | If focus is inside a popup submenu, closes the submenu and moves focus to the root item of the closed submenu. |
down arrow | Moves focus to the next menuitem within the submenu. |
up arrow | Moves focus to the previous menuitem within the submenu. |
right arrow | Opens a submenu if there is one available and moves focus to the first item. |
left arrow | Closes a submenu and moves focus to the root item of the closed submenu. |
home | Moves focus to the first menuitem within the submenu. |
end | Moves focus to the last menuitem within the submenu. |
API defines helper props, events and others for the PrimeNG TieredMenu module.
TieredMenu displays submenus in nested overlays.
Defines the input properties of the component.
name | type | default | description | ||
---|---|---|---|---|---|
MenuItem[] | |||||
boolean | |||||
Object | |||||
string | |||||
any | |||||
boolean | |||||
number | |||||
boolean | |||||
string | |||||
string | |||||
string | |||||
string | |||||
string | |||||
boolean | |||||
number |
Defines emit that determine the behavior of the component based on a given condition or report the actions that the component takes.
name | parameters | description | |
---|---|---|---|
value : any | |||
value : any |
Defines methods that can be accessed by the component's reference.
name | parameters | description | |
---|---|---|---|
event : any isFocus : boolean | |||
event : any | |||
event : any isFocus : any |
Defines the templates used by the component.
name | parameters | description | |
---|---|---|---|
context : {
$implicit: any, // Item instance.
hasSubmenu: boolean, // Submenu control of the item.
} | |||
Defines the custom interfaces used by the module.
MenuItem provides the following properties. Note that not all of them may be utilized by the tabmenu component.
name | type | description |
---|---|---|
string | ||
string | ||
- | ||
string | ||
MenuItem[] | ||
boolean | ||
boolean | ||
boolean | ||
string | ||
boolean | ||
any | ||
boolean | ||
string | ||
string | ||
string | ||
string | ||
Object | ||
string | ||
string | ||
string | ||
any | ||
string | ||
any | ||
Object | ||
string | ||
QueryParamsHandling | ||
boolean | ||
boolean | ||
boolean | ||
Object | ||
string | ||
Object | ||
TooltipOptions |