我有一个 koGrid 配置如下:
var myItemsGrid = {
data: myItems,
columnDefs: [
{ field: 'item.title', displayName: 'Title', cellTemplate: $("#cdfUrlCellTemplate").html() },
{ field: 'item.dueTimeUtc', displayName: 'Due', cellFormatter: formatDate, sortFn: sortDates },
{ field: 'id', displayName: 'Edit', cellTemplate: $("#editCellTemplate").html() }
],
showGroupPanel: true,
groups: ['item.title'],
showFilter: false,
canSelectRows: false
};
我的问题是,我尝试使用网格中某个字段的字段名称填充的组数组导致以下错误:
TypeError:无法读取未定义的属性“isAggCol”
我应该如何填充组数组以便我可以为我的网格设置初始分组?