DhtmlxGrid

how can i change the selected row color for the gray skin??

Defined in dhtmlxgrid.css, for gray skin it will be

div.gridbox_mt table.obj tr.rowselected td{
    background-color:#D6D3FA;
    color:black;
    }
div.gridbox_mt table.obj tr.rowselected td.cellselected, div.gridbox table.obj td.cellselected {
    background-color:#D6D3FA;
    }


i tried the following and its not working



div.gridbox_mt table.obj tr.rowselected td{



background-color:#8FBC8F;



color:Black;



}



div.gridbox_mt table.obj tr.rowselected td.cellselected, div.gridbox table.obj td.cellselected {



background-color:#8FBC8F;



}

Sorry for inconvenience, the correct class names for gray skin are

div.gridbox table.obj tr.rowselected td{

div.gridbox table.obj tr.rowselected td.cellselected, div.gridbox table.obj td.cellselected {

dhtmlxgrid.css (13.2 KB)