我喜欢使用rownumbers
属性在网格中显示行号。但是如果只返回一行,是否有办法动态地将rownumbers
设置为false。为什么?在没有标题的列中看到“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');
}
}