在我的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)
答案 0 :(得分:0)
我认为问题将通过
的使用来解决ui-jqgrid > .ui-jqgrid-view > .ui-jqgrid-hdiv { overflow: hidden; }
顺便说一句,CSS设置包含在free jqGrid 4.8。
中