<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.
Example
<kendo:treeList-column-filterable>
<kendo:treeList-column-filterable-cell></kendo:treeList-column-filterable-cell>
</kendo:treeList-column-filterable>
Configuration Attributes
dataTextField java.lang.String
Specifies the name of the field which will provide the text representation for the AutoComplete suggestion (when using String type column) when CustomDataSource is provided. By default the name of the field bound to the column will be used.
Example
<kendo:treeList-column-filterable-cell dataTextField="dataTextField">
</kendo:treeList-column-filterable-cell>
delay float
Specifies the delay of the AutoComplete widget which will provide the suggest functionality (when using String type column).
Example
<kendo:treeList-column-filterable-cell delay="delay">
</kendo:treeList-column-filterable-cell>
enabled boolean
When set to false the TreeList will not render the cell filtering widget for that specific column.
Example
<kendo:treeList-column-filterable-cell enabled="enabled">
</kendo:treeList-column-filterable-cell>
inputWidth float
Specifies the width of the input before it is initialized or turned into a widget. Provides convenient way to set the width according to the column width.
Example
<kendo:treeList-column-filterable-cell inputWidth="inputWidth">
</kendo:treeList-column-filterable-cell>
minLength float
Specifies the minLength option of the AutoComplete widget when column is of type string.
Example
<kendo:treeList-column-filterable-cell minLength="minLength">
</kendo:treeList-column-filterable-cell>
operator java.lang.String
Specifies the default operator that will be used for the cell filtering.
Example
<kendo:treeList-column-filterable-cell operator="operator">
</kendo:treeList-column-filterable-cell>
showOperators boolean
Specifies whether to show or hide the DropDownList with the operators.
Example
<kendo:treeList-column-filterable-cell showOperators="showOperators">
</kendo:treeList-column-filterable-cell>
suggestionOperator java.lang.String
Specifies the AutoComplete filter option. The possible values are the same as the ones for the AutoComplete filter option - "startswith", "endswith", "contains". The "contains" operator performs a case-insensitive search. To perform a case-sensitive filtering, set a custom filtering function through the dataSource.filter.operator option.
Example
<kendo:treeList-column-filterable-cell suggestionOperator="suggestionOperator">
</kendo:treeList-column-filterable-cell>
template java.lang.String
JavaScript function which will customize how the input for the filter value is rendered. The function receives an object argument with two fields: element - the default input inside the filter cell; or dataSource - a Kendo UI DataSource instance, which has the same settings as the TreeList dataSource, but will only contain data items with unique values for the current column. This instance is also used by the default AutoComplete widget, which is used inside the filter cell if no template is set. Keep in mind that the passed dataSource instance may still not be populated at the time the template function is called, if the TreeList uses remote binding..
Example
<kendo:treeList-column-filterable-cell template="template">
</kendo:treeList-column-filterable-cell>
Event Attributes
template String
JavaScript function which will customize how the input for the filter value is rendered. The function receives an object argument with two fields: element - the default input inside the filter cell; or dataSource - a Kendo UI DataSource instance, which has the same settings as the TreeList dataSource, but will only contain data items with unique values for the current column. This instance is also used by the default AutoComplete widget, which is used inside the filter cell if no template is set. Keep in mind that the passed dataSource instance may still not be populated at the time the template function is called, if the TreeList uses remote binding..
Example
<kendo:treeList-column-filterable-cell template="handle_template">
</kendo:treeList-column-filterable-cell>
<script>
function handle_template(e) {
// Code to handle the template event.
}
</script>
Event Tags
kendo:treeList-column-filterable-cell-template
JavaScript function which will customize how the input for the filter value is rendered. The function receives an object argument with two fields: element - the default input inside the filter cell; or dataSource - a Kendo UI DataSource instance, which has the same settings as the TreeList dataSource, but will only contain data items with unique values for the current column. This instance is also used by the default AutoComplete widget, which is used inside the filter cell if no template is set. Keep in mind that the passed dataSource instance may still not be populated at the time the template function is called, if the TreeList uses remote binding..
Example
<kendo:treeList-column-filterable-cell>
<kendo:treeList-column-filterable-cell-template>
<script>
function(e) {
// Code to handle the template event.
}
</script>
</kendo:treeList-column-filterable-cell-template>
</kendo:treeList-column-filterable-cell>