使用 Kendo UI 网格(由 Telerik 提供)是否可以允许对某些列进行分组,而不能对其他列进行分组?演示示例将 groupable: true 显示为网格级属性。文档读取 groupable Boolean | Object(default: false) 。是否可以在列对象上将 groupable 属性设置为 false,以覆盖列级别的网格级别可分组性?

$("#grid").kendoGrid({
 dataSource: {
     data: createRandomData(50),
     pageSize: 10
 },
 columns: [
     {
         field: "Name"
     },
     {
         groupable: false,    /*  ?prevent grouping on birthdate? */
         field: "BirthDate",
         title: "Birth Date",
         template: '#= kendo.toString(BirthDate,"dd MMMM yyyy") #'
    }
 ],
  groupable: true

});

最佳答案

是的,你几乎自己回答了你的问题。是的,您可以,这里是示例列定义。

 {
        "title": "Birth Date",
        "field": "BirthDate",
        "groupable": false
 }

确保您使用 Q3 2012,我不确定以前的版本是否支持它。

关于grid - 剑道 UI 网格 : possible to allow grouping on specified columns and not on other columns,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13845721/

10-10 00:29