Hi,
I am using the below lines to change color of a row ar run time.
tr.pq-row-rejected td {
background-color: #FDD2D2;
}
$grid.pqGrid("addClass", { rowIndx: rowIndx, cls: 'pq-row-rejected' });
This is working fine for me.
But I need to set the color of the rows by reading color value from a table.
Color value is not fixed and user may change color at run time.
Please let me know How to set selected color at run time to a row background in pqGrid without using fixed class?
I am using Paramquery 2.x version.
Thank you.