<kendo:gantt-column-filterable>
If set to true and if filtering is enabled for the entire Gantt, a filter menu will be displayed for this column. If set to false, the filter menu will not be displayed. By default, a filter menu is displayed for all columns when filtering is enabled through the filterable option. Can be set to a JavaScript object which represents the filter menu configuration.
Example
<kendo:gantt-column>
<kendo:gantt-column-filterable></kendo:gantt-column-filterable>
</kendo:gantt-column>
Configuration Attributes
ui java.lang.String
The role data attribute of the widget that is used in the filter menu, or a JavaScript function which initializes that widget.
Example
<kendo:gantt-column-filterable ui="ui">
</kendo:gantt-column-filterable>
Event Attributes
ui String
The role data attribute of the widget that is used in the filter menu, or a JavaScript function which initializes that widget.
Example
<kendo:gantt-column-filterable ui="handle_ui">
</kendo:gantt-column-filterable>
<script>
function handle_ui(e) {
// Code to handle the ui event.
}
</script>
Event Tags
kendo:gantt-column-filterable-ui
The role data attribute of the widget that is used in the filter menu, or a JavaScript function which initializes that widget.
Example
<kendo:gantt-column-filterable>
<kendo:gantt-column-filterable-ui>
<script>
function(e) {
// Code to handle the ui event.
}
</script>
</kendo:gantt-column-filterable-ui>
</kendo:gantt-column-filterable>