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

Strange view of row filter in Kendo UI Grid

我的 Kendo UI 生成器网格的行过滤方法有问题。

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

您可以看到,没有输入区域,过滤器本身看起来也坏了。

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

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

网格由 Progress Kendo UI Builder Version 2.0.0.87 制作。

我错过了什么?

知道了! 如果修改可过滤模式,则还必须修改过滤选项。

Documentation

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