I have a problem with the row filtering method of my Kendo UI Builder grids.
When I'm setting the filterable property to "row"
or "menu, row"
then the grid displays the following row filters.
You can see, that there is no input area and the filter itself looks broken.
Here is my code for setting the filterable mode in controller.public.js
.
this.$components.KDGrid.options.filterable = {
mode: "row"
};
The grid is made by the Kendo UI Builder Version 2.0.0.87 by Progress.
What I'm missing?
Got it! If you modify the filterable mode, than you also have to modify the filter options.
this.$components.KDGrid.options.columns["0"].filterable = {
cell: {
showOperators: false,
operator: "gte"
}
};