New to Kendo UI for Angular? Start a free 30-day trial
ContextMenuTemplateDirective
Represents a template for the content of the ContextMenu. To define a template, nest an <ng-template>
tag with the kendoContextMenuTemplate
directive inside a <kendo-contextmenu>
component
(more information and examples).
Change Theme
Theme
Loading ...
html
<kendo-contextmenu>
<ng-template kendoContextMenuTemplate let-item="item">
<span>{{ item.text }}</span>
</ng-template>
</kendo-contextmenu>
Selector
[kendoContextMenuTemplate]