当我将分组添加到网格中时,除了一个问题之外,它的效果很好。包含分组信息的行正在使用网格“宽度”的 colspan 构建,这意味着它位于我在网格中构建的一些垂直列的顶部,以帮助添加视觉分隔。
有没有办法让这一行不跳过那一列,这样我就可以在网格中的各个部分之间保持良好的视觉中断?
更新: 我通过以下方法过程添加这些垂直“间隔”列:-在 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(6, 0, "");
} //for
}, //beforeProcessing
-colmodel 设置匹配将包含“空格”的单元格
{ name: "empty1" ,width: 10, sortable: false, hidedlg: true, search: false, resizable: false, fixed: true, classes: 'NoHorizontalGridBorders' },
-css
.NoHorizontalGridBorders { border-bottom-color: transparent !important; background-color: White !important;}