以下代码将数据动态绑定到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
});
但是,当我只有两列显示在网格中时,标题和网格数据列的宽度会变化。 请参阅下面的快照
答案 0 :(得分:0)
在colM
中,将fixed
设置为true
,然后为每列设置width
像素。