New to Kendo UI for Angular? Start a free 30-day trial
FilterMenuTemplateDirective
Represents the filter-menu template for the TreeList filter menu.
Use this directive to provide a custom template for the filter menu in a TreeList column (see example).
html
<kendo-treelist-column field="title" title="Title" [width]="180">
<ng-template kendoTreeListFilterMenuTemplate
let-filter="filter"
let-filterService="filterService">
<my-custom-filter-menu-component
[currentFilter]="filter"
[filterService]="filterService">
</my-custom-filter-menu-component>
</ng-template>
</kendo-treelist-column>
Selector
[kendoTreeListFilterMenuTemplate]