New to Kendo UI for Angular? Start a free 30-day trial
FilterableSettings
Configures the filterable
option for the Grid.
The possible values are:
row
—Shows a filter row in the Grid. See example.menu
—Shows a filter menu in the Grid. See example.menu, row
—Shows both filter menu and filter row.
html
<kendo-grid filterable="menu, row"></kendo-grid>
type
FilterableSettings = boolean
| "row" | "menu" | "menu, row";