I have the following jqgrid that uses the jquery ui theme imported to my master page.
$(\"#shippingscheduletable\").jqGrid({ url: $(\"#shipping
What about via Jquery Css. See code below to set rows with Inactive status to red. Grid name is jqTable.
jqTable
setGridColors: function() { $('td[title="Inactive"]', '#jqTable').each(function(i) { $(this).parent().css('background', 'red'); }); }