I have the following jqgrid that uses the jquery ui theme imported to my master page.
$(\"#shippingscheduletable\").jqGrid({
url: $(\"#shipping
I tried this and works to set the background color for the entire row. Works with paging also:
gridComplete: function()
{
var rows = $("#"+mygrid).getDataIDs();
for (var i = 0; i < rows.length; i++)
{
var status = $("#"+mygrid).getCell(rows[i],"status");
if(status == "Completed")
{
$("#"+mygrid).jqGrid('setRowData',rows[i],false, { color:'white',weightfont:'bold',background:'blue'});
}
}
}