New to Kendo UI for Angular? Start a free 30-day trial

ColumnMenuItemContentTemplateDirective

Represents the content template of the ColumnMenuItemComponent component. Provides an option for specifying the content of a column item. To define the content template, nest an <ng-template> tag with the kendoGridColumnMenuItemContentTemplate directive inside a <kendo-grid-columnmenu-item>.

<kendo-grid [data]="data" [columnMenu]="true" ...>
  <ng-template kendoGridColumnMenuTemplate>
    <kendo-grid-columnmenu-item text="Item Text" [expanded]="true">
      <ng-template kendoGridColumnMenuItemContentTemplate>
        Item Content
      </ng-template>
    </kendo-grid-columnmenu-item>
  </ng-template>
  <kendo-grid-column field="Field1"></kendo-grid-column>
  ...
</kendo-grid>

Selector

[kendoGridColumnMenuItemContentTemplate]

In this article

Not finding the help you need?