在jqgrid中动态地将rownumbers设置为false

时间:2012-03-16 15:56:01

标签: jqgrid

我喜欢使用rownumbers属性在网格中显示行号。但是如果只返回一行,是否有办法动态地将rownumbers设置为false。为什么?在没有标题的列中看到“1”乍一看有点令人困惑。但如果有多行,那么您很快就会意识到该列的目的。

1 个答案:

答案 0 :(得分:2)

如果记录数量不够大,您可以尝试隐藏保存记录号的'rn'列。像

这样的东西
loadComplete: function () {
    if ($(this).jqGrid('getGridParam', 'records') <= 1) { // this.p.records
        $(this).jqGrid('hideCol', 'rn');
    } else {
        // show previous hidden column
        $(this).jqGrid('showCol', 'rn');
    }
}