【发布时间】:2015-03-17 17:53:29
【问题描述】:
在我的 jqGrid 表中,第一列是“冻结”列,并且在标题中有一个滚动条,如下所示。如果我删除“冻结”属性,滚动似乎消失了。
代码:查看第一列中的“冻结”属性
colNames: [
"Certification Name",
"Current",
"Lapsing",
"Lapsed",
"Not Certified",
"Total Certification"
],
colModel: [
{ name: "CertificationName", index: "CertificationName", width: 550, frozen: true },
{ name: "CurrentCount", index: "CurrentCount", width: 75, sorttype: "int", align: 'center' },
{ name: "LappsingCount", index: "LappsingCount", width: 75, sorttype: "int", align: 'center' },
{ name: "LappsedCount", index: "LappsedCount", width: 75, sorttype: "int", align: 'center' },
如何移除滚动条或防止滚动条出现在第一个标题列中?
注意:我使用的是 jqGrid 插件(版本 4.6.0)
【问题讨论】:
标签: jquery jqgrid jqgrid-asp.net