我在 JQGrid 中有一个网格,
我的列表很长,所以右边有一个垂直滚动
但是这个滚动条在最后一列而不是像这样在右侧单独的
我怎样才能把它放在一个单独的列中?
看到不好的结果:这里
查看代码:这里
在末尾添加一个空白列,然后滚动条将转到那里。
为此,请通过以下方式将空白值附加到网格设置中的数据行:
beforeProcessing: function (data, status, xhr) {
//add the spaces to the returned data to allow for the blank vertical columns in the grid
for (var x = 0, length = data.rows.length; x < length; x++) {
data.rows[x].cell.splice(5,0, "");
}//for
}, //beforeProcessing
为您的列添加额外的值:
'Fournisseur<br/>Commande',
'Contenu', ''],
然后添加空白列定义:
{ name: "empty1", width: 10, sortable: false, hidedlg: true, search: false, resizable: false, fixed: true },