以下代码将数据动态绑定到JQGrid,并在网格中显示大列的情况下正确显示数据:
$('#divJQGridShowResult').jqGrid({
jsonReader: {
cell: "cell",
id: "id"
},
datatype: 'jsonstring',
mtype: 'post',
datastr: colD,
colModel: colM,
rowNum: 100,
rowList: [5, 10, 20, 50],
viewrecords: true
});
但是,当我只有两列显示在网格中时,标题和网格数据的列宽会有所不同。
请看下面的快照
最佳答案
在colM
中,将fixed
设置为true
,此外,将每一列的width
设置为像素。