New to Kendo UI for Angular? Start a free 30-day trial
ColumnCellTemplateDirective
Renders the column cell content of the MultiColumnComboBox. To define a column cell template, nest an <ng-template>
tag
with the kendoMultiColumnComboBoxColumnCellTemplate
directive inside the <kendo-combobox-column>
tag
(see example).
The current column
and data item are available as context variables:
let-dataItem="dataItem"
(any
) - The current data item. Also available as implicit context variable.let-column="column"
(ColumnComponent
) - The current column configuration obejct.
Selector
[kendoMultiColumnComboBoxColumnCellTemplate]