Kendo ui 弹出编辑窗口不显示';t在可过滤模式下显示

Kendo ui 弹出编辑窗口不显示';t在可过滤模式下显示,kendo-ui,kendo-grid,Kendo Ui,Kendo Grid,如果网格列上有筛选器,则不会显示弹出窗口 我在editing-popup.html示例文件中添加了filterable:true,“添加新记录”不再显示弹出窗口。(但新行仍在未经验证的情况下添加) 它看起来像一只虫子 $("#grid").kendoGrid({ dataSource: dataSource, filterable: true, pageable: true, height: 430, toolbar: ["create"], co

如果网格列上有筛选器,则不会显示弹出窗口

我在editing-popup.html示例文件中添加了filterable:true,“添加新记录”不再显示弹出窗口。(但新行仍在未经验证的情况下添加)

它看起来像一只虫子

$("#grid").kendoGrid({
    dataSource: dataSource,
    filterable: true,
    pageable: true,
    height: 430,
    toolbar: ["create"],
    columns: [
        { field:"ProductName", title: "Product Name" },
        { field: "UnitPrice", title:"Unit Price", format: "{0:c}", width: "100px" },
        { field: "UnitsInStock", title:"Units In Stock", width: "100px" },
        { field: "Discontinued", width: "100px" },
        { command: ["edit", "destroy"], title: " ", width: "160px" }],
    editable: "popup"
});

你能分享代码吗?这是下载档案中的一个示例文件:editing-popup.html。我刚刚添加了“filterable:true”。我想这里已经提到了。我没看到任何问题。你可以检查我创建的小提琴吗?对不起,我没有提到,网格应该是“filterable:true”,你应该过滤行,然后它就不起作用了。你的例子也一样。