New to Kendo UI for Angular? Start a free 30-day trial
ColumnCellTemplateDirective
Updated on Nov 3, 2025
Renders the column cell content of the MultiColumnComboBox component.
To define a column cell template, nest an <ng-template> tag with the kendoMultiColumnComboBoxColumnCellTemplate directive inside the <kendo-combobox-column> tag.
See example.
The context variables are:
let-dataItem="dataItem"(any)—The current data item. Also available as the implicit context variable.let-column="column"(ColumnComponent)—The current column configuration object.
html
<kendo-multicolumncombobox ...>
  <kendo-combobox-column field="name" title="Name">
    <ng-template kendoMultiColumnComboBoxColumnCellTemplate let-dataItem="dataItem" let-column="column">
      {{ dataItem[column.field] }}
    </ng-template>
  </kendo-combobox-column>
<kendo-multicolumncombobox>
Selector
[kendoMultiColumnComboBoxColumnCellTemplate]