选中行时,在一个单元格中将字体设置为粗体。 jqGrid的

时间:2012-02-29 15:21:48

标签: jqgrid

当我选择一行时,如何在一个特定单元格中将font-weight设置为粗体?

1 个答案:

答案 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样式。