New to Kendo UI for Angular? Start a free 30-day trial
ColumnHeaderTemplateDirective
Renders the column header content of the MultiColumnComboBox component.
To define a column header template, nest an <ng-template>
tag with the kendoMultiColumnComboBoxColumnHeaderTemplate
directive inside the <kendo-combobox-column>
tag.
See example.
The current column
is available as the implicit context variable.
html
<kendo-multicolumncombobox ...>
<kendo-combobox-column field="name" title="Name">
<ng-template kendoMultiColumnComboBoxColumnHeaderTemplate let-column="column">
{{ column.title }}
</ng-template>
</kendo-combobox-column>
<kendo-multicolumncombobox>
Selector
[kendoMultiColumnComboBoxColumnHeaderTemplate]