columns.filterable Boolean|Object
(default: true)
If set to true
a filter menu will be displayed for this column when filtering is enabled. 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 via the filterable option.
Can be set to a JavaScript object which represents the filter menu configuration.
Example - disable filtering
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name", filterable: false },
{ field: "age" }
],
filterable: true,
dataSource: [ { name: "Jane", age: 30 }, { name: "John", age: 33 }]
});
</script>
Related Properties
- columns.filterable.cell
- columns.filterable.cell.dataSource
- columns.filterable.cell.dataTextField
- columns.filterable.cell.delay
- columns.filterable.cell.inputWidth
- columns.filterable.cell.suggestionOperator
- columns.filterable.cell.minLength
- columns.filterable.cell.enabled
- columns.filterable.cell.operator
- columns.filterable.cell.showOperators
- columns.filterable.cell.template
- columns.filterable.extra
- columns.filterable.multi
- columns.filterable.dataSource
- columns.filterable.checkAll
- columns.filterable.itemTemplate
- columns.filterable.operators
- columns.filterable.search
- columns.filterable.ignoreCase
- columns.filterable.ui