Hi ,
I am unable to add nested menu to ejs-dropdownbutton in kanban control, how can i add nested menu to ejs-dropdownbutton?
and when i click on on one of nested item in the menu , i should be able to know on what kanban item the menu click is happening.
Please find the attachment for your referance.
<button ejs-dropdownbutton #dropdownbtn [items]='menuItems' cssClass='action-button e-caret-hide'
(select)='menuSelection($event, data)'>
<i class="fas fa-ellipsis-v"></i>
</button>
menuItems: MenuItemModel[] = [
{ id: 'show', text: 'Show details' },
{ id: 'edit', text: 'Edit' },
{ id: 'delete', text: 'Delete' },
{
id: 'reports', text: 'Reports',
items: [
{ id: 'reports1', text: 'Reports1' },
{ id: 'reports2', text: 'Reports2' }
]
}
];
Attachment:
nested_menu_in_dropdown_69b740d.zip