New to Kendo UI for Angular? Start a free 30-day trial
FilterCellTemplateDirective
Represents the filter-cell template for the TreeList. Use this directive to customize the filter row cell for a column. See custom filter row components.
The template context is set to the filter descriptor and provides the following fields:
column
—The current column instance. Use as an alias for a template variable withlet-column="column"
.filter
—The filter descriptor.cellContext
—An object used to pass context information to built-in directives.
html
<kendo-treelist-column field="name" title="Name">
<ng-template kendoTreeListFilterCellTemplate let-column="column" let-filter="filter" let-cellContext="cellContext">
<kendo-maskedtextbox mask="(999) 000-0000"
[promptPlaceholder]="prompt" [includeLiterals]="true"
(valueChange)="phoneChange($event)"
>
</kendo-maskedtextbox>
</ng-template>
</kendo-treelist-column>
Selector
[kendoTreeListFilterCellTemplate]