Disable Row Color

Grid 3.5.

Whenever I click on a row in the Grid, the row becomes selected and meantime, a color such as light gray also shown.

How can I disable the color change when I select a row?

Thanks

Scott

Unfortunately such feature is available only changing the css files of dhtmlxgrid.
You need to remove all the “background” attributes of the “rowselected”.
For example:
div.gridbox table.obj tr.rowselected td{
background-color:#e1e0d7;
color:black;
}

should be replaced with:
div.gridbox table.obj tr.rowselected td{
color:black;
}

I am not able to disable the row color in case IE browser. It still shows the background color as white, the actual DOM body background

Unfortunately the issue cannot be reproduced locally.
If the problem still occurs for you, please, provide with a complete demo or a demo link, where the issue can be reproduced.
Here you can find a tutorial about creating a complete demo:
docs.dhtmlx.com/auxiliary_docs__ … pport.html