Hi there,
When I click on particular row of the grid, it changes the color of whole row.
I want disable this feature means it should retain original row color. How to do this ?
The row color change is visual representation of row selection.
You can
a) block selection at all
grid.attachEvent(“onBeforeSelect”,function(){return false });
or
b) just remove or change next css rule from dhtmlxgrid.css
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;
}