简体   繁体   中英

Strange view of row filter in Kendo UI Grid

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.

Documentation

this.$components.KDGrid.options.columns["0"].filterable = {
        cell: {
            showOperators: false,
            operator: "gte"
        }
    };

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM