为动态创建的jqGrid的所有列设置相同的宽度

时间:2014-03-03 10:18:13

标签: jquery css jqgrid

以下代码将数据动态绑定到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
});

但是,当我只有两列显示在网格中时,标题和网格数据列的宽度会变化。 请参阅下面的快照

enter image description here

1 个答案:

答案 0 :(得分:0)

colM中,将fixed设置为true,然后为每列设置width像素。