I was investigating the Keno-menu to replace some bootstrap menus in my Angular 6 application. I went through all the demos but did not see that it supports any sort of click event binding. Do I need to embed an anchor or button in a ng-template to do this?
Unless I was missing something it seems like a pretty basic thing for a menu item to support. I would prefer a declarative method in the Html but if there is some sort of menu event handler that I could add to the component backing the menu that would work
example of what I would have expected :
<kendo-menu>
<kendo-menu-item text="Sign Out" (click)="signOutUser()"></kendo-menu-item>
</kendo-menu>