繁体   English   中英

Kendo UI Grid中行过滤器的奇怪视图

[英]Strange view of row filter in Kendo UI Grid

我的Kendo UI Builder网格的行过滤方法有问题。

当我将filterable属性设置为"row""menu, row" ,网格将显示以下行过滤器。

在此处输入图片说明

您会看到,没有输入区域,并且过滤器本身看起来已损坏。

这是我的代码,用于在controller.public.js设置可过滤模式。

this.$components.KDGrid.options.filterable = {
    mode: "row"
};

该网格由Progress的Kendo UI Builder版本2.0.0.87构成。

我想念的是什么?

得到它了! 如果您修改可过滤模式,则还必须修改过滤器选项。

文献资料

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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