Based on a column condition, I am setting the text color of the row to Red and it is working fine.
Now when I select the rows with Red text, the record is not highlighting. (highlight color is not appearing). How should I fix this?
Thanks
RG
2 Answers
Hello,
A little fix will be required in lib/inc/jqgrid_dist.php
Replace:
jQuery('#$grid_id tr.jqgrow:eq('+i+')').css('background','inherit')
with
jQuery('#$grid_id tr.jqgrow:eq('+i+')').css('background-image','inherit')
throughout the lib.
(background -> background-image). This will retain the bgcolor of row. This change will be merged in new version.
Your Answer