Kendo.Mvc.UI.Fluent.TreeListColumnFilterableSettingsBuilder
Defines the fluent API for configuring TreeListColumnFilterableSettings
Properties
Container
Gets the container of the TreeListColumnFilterableSettings
Methods
Ui(Kendo.Mvc.UI.GridFilterUIRole)
Sets the type of the input element of the filter menu
Example (ASPX)
<%= Html.Kendo().Grid(Model)
.Name("Grid")
.Columns(columns =>
columns.Bound(o => o.OrderDate)
.Filterable(filterable =>
filterable.UI(GridFilterUIRole.DatePicker)
)
)
%>
Ui(System.String)
Sets JavaScript function which to modify the UI of the filter input.
Parameters
handler System.String
JavaScript function name
Operators(System.Action<Kendo.Mvc.UI.Fluent.FilterableOperatorsBuilder>)
Configures the Filter menu operators.