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,隐藏了无用的额外列?的主要内容,如果未能解决你的问题,请参考以下文章
DataTables添加额外的查询参数和删除columns等无用参数