New to Kendo UI for Angular? Start a free 30-day trial
FilterableSettings
Represents the options for the filterable
setting of the Grid.
The available values are:
row
—Displays a filter row in Grid. See example.menu
—Displays a filter menu in Grid. See example.menu, row
—Displays filter menu with filter row.
html
<kendo-grid filterable="menu, row"></kendo-grid>
type
FilterableSettings = boolean
| "row" | "menu" | "menu, row";