Filtering
The Kendo UI for Vue Native Data Grid provides diverse filtering options for displaying Grid records which meet specified criteria.
Filter Options
The Grid data can be filtered using one of the following options:
Option | Setup | Description |
---|---|---|
Filter row | Set the filterable option to true | Filter controls are rendered below each column header cell. The data is filtered automatically once the user stop typing. |
ColumnMenu Filtering | Set the columnMenu option to true . | A menu icon displays inside the column header. The data can be filtered when the user make a selection in the Filter popup of the column menu. |
The following example demonstrates the available filter modes of the Grid.
More details about each filtering option and the custom scenarios that can be applied, you can find on the following links:
Filter Data Types
In its column filters, the Grid provides a built-in filtering UI for all basic data types (string
, number
, Date
, boolean
). You can set the filtering UI type through the filter input property of each column.
Text Filter
The text filter is the default filter type. Its UI is a Input
component.
Numeric Filter
The numeric filtering UI is a NumericTextBox
component.
Date Filter
The date filtering UI is the DatePicker
component.
Boolean Filter
The boolean filtering UI utilizes the DropDownList
component.