Represents the content template for the kendo-treelist-columnmenu-item component.
Use this directive to specify the content of a column menu item.
To define the content template, nest an <ng-template> tag with the kendoTreeListColumnMenuItemContentTemplate directive inside a <kendo-treelist-columnmenu-item>.
Definition
Package:@progress/kendo-angular-treelist
Selector:[kendoTreeListColumnMenuItemContentTemplate]
Syntax:
html
<kendo-treelist ...>
<kendo-treelist-column field="ProductName">
<ng-template kendoTreeListColumnMenuTemplate>
<kendo-treelist-columnmenu-item text="Item Text" [expanded]="true">
<ng-template kendoTreeListColumnMenuItemContentTemplate>
Item Content
</ng-template>
</kendo-treelist-columnmenu-item>
</ng-template>
</kendo-treelist-column>
</kendo-treelist>