Disable row selection highlighting

Hi, Is there a way to disable row selection highlighting completely? I know I can override the css and set my own row highlight, but that doesn’t work for me because I have cell level background colors set on a per column basis, and these get overridden by row highlighting when a new row is selected. I just want to completely disable the row highlighting, so no new background colors are set on my cells.

Thanks.

The only way is to comment out css settings in dhtmlxGrid.css file (it depends on skin you use, so you probably need to coment out all occurences of such classes):

div.gridbox table.obj tr.rowselected td.cellselected, div.gridbox table.obj td.cellselected {
 /background-color:#d8d8d8;
 color:black;
/
 }
div.gridbox table.obj tr.rowselected td{
 /background-color:#e1e0d7;
 color:black;
/
 }