Kendo Grid,隐藏了无用的额外列?

Posted

技术标签:

【中文标题】Kendo Grid,隐藏了无用的额外列?【英文标题】:Kendo Grid, hiding the extra column that does nothing? 【发布时间】:2014-04-23 10:53:12 【问题描述】:

在 Kendo UI 中,使用 Grid 小部件,我无法弄清楚如何隐藏表格末尾的额外列,该列什么都不做,似乎是为滚动条保留的。

有人知道吗?它在所有的例子中:http://demos.telerik.com/kendo-ui/web/grid/index.html

【问题讨论】:

【参考方案1】:

使用scrollable 配置选项:

$("#grid").kendoGrid(
  columns: [
     field: "name" ,
     field: "age" 
  ],
  dataSource: [
     name: "Jane Doe", age: 30 ,
     name: "John Doe", age: 33 
  ],
  scrollable: false
);

【讨论】:

啊——你是我的英雄!

以上是关于Kendo Grid,隐藏了无用的额外列?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Kendo Grid 中隐藏列组

如何保存 Kendo MVC Grid 的列顺序

如何使用脚本显示 Kendo Grid 列菜单

DataTables添加额外的查询参数和删除columns等无用参数

python Django Admin:隐藏UserAdmin的权限,为GroupAdmin排除无用的权限

Kendo UI Grid 本地数据源列默认排序