Kendo网格 - 分组无法使用自定义编辑器下拉列表

时间:2016-02-12 17:56:09

标签: javascript jquery kendo-ui kendo-grid

我正在使用带有内联编辑选项的分组的kendo网格。一列正在使用自定义编辑器下拉列表。当我尝试使用该特定列进行分组时,我收到类似Uncaught SyntaxError: Unexpected identifier的错误,我在以下示例http://dojo.telerik.com/@jomet/EXeqE中创建了类似的情况 - 对于分类

1 个答案:

答案 0 :(得分:1)

在窗口小部件初始化中定义列时,必须引用要分组的类别中的字段。您引用了'类别',但您需要引用' Category.CategoryName'。
因此,在您的Dojo示例中,请更改此:

{ field: "Category", title: "Category", width: "180px", editor: categoryDropDownEditor, template: "#=Category.CategoryName#" },

到此:

{ field: "Category.CategoryName", title: "Category", width: "180px", editor: categoryDropDownEditor, template: "#=Category.CategoryName#" },

你应该好好去!