New to Kendo UI for Angular? Start a free 30-day trial
FilterMenuTemplateDirective
Represents the filter-menu template for the Gantt column.
Use this directive to customize the filter menu for a column. The template context provides:
column
—The current column instance. Use as an alias for a template variable with thelet-column="column"
syntax.filter
—The filter descriptor.cellContext
—An object for passing context information to built-in directives.
html
<kendo-gantt-column>
<ng-template kendoGanttFilterMenuTemplate let-column let-filter="filter">
Custom filter for {{ column.field }}
</ng-template>
</kendo-gantt-column>
Selector
[kendoGanttFilterMenuTemplate]