<kendo:treeList-column-filterable>

If set to true and if filtering is enabled, 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:treeList-column>
    <kendo:treeList-column-filterable></kendo:treeList-column-filterable>
</kendo:treeList-column>

Configuration Attributes

operators java.lang.Object

The property is identical to filterable.operators, but is used for a specific column.

Example

<kendo:treeList-column-filterable operators="operators">
</kendo:treeList-column-filterable>

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:treeList-column-filterable ui="ui">
</kendo:treeList-column-filterable>

Configuration JSP Tags

kendo:treeList-column-filterable-cell

Specifies options for the filter header cell when filter mode is set to 'row'.Can be set to a JavaScript object which represents the filter cell configuration.

More documentation is available at kendo:treeList-column-filterable-cell.

Example

<kendo:treeList-column-filterable>
    <kendo:treeList-column-filterable-cell></kendo:treeList-column-filterable-cell>
</kendo:treeList-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:treeList-column-filterable ui="handle_ui">
</kendo:treeList-column-filterable>
<script>
    function handle_ui(e) {
        // Code to handle the ui event.
    }
</script>

Event Tags

kendo:treeList-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:treeList-column-filterable>
    <kendo:treeList-column-filterable-ui>
        <script>
            function(e) {
                // Code to handle the ui event.
            }
        </script>
    </kendo:treeList-column-filterable-ui>
</kendo:treeList-column-filterable>
In this article
Not finding the help you need?