当我选择一行时,如何在一个特定单元格中将font-weight设置为粗体?
答案 0 :(得分:1)
您可以在setCell
内使用onSelectRow
来更改单元格的样式。例如
onSelectRow: function (id) {
var $this = $(this);
if (id !== lastSel && typeof lastSel !== 'undefined') {
$this.jqGrid('setCell', lastSel, 'total', '', {'font-weight': 'normal'});
}
$this.jqGrid('setCell', id, 'total', '', {'font-weight': 'bold'});
lastSel = id;
}
见the demo。在这种方式中,您可以设置任何其他CSS样式。