Вы можете использовать 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;
}
см. демо . В способе вы можете установить любые другие стили CSS.