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