Click Row makes selected background color permanent

Click Row makes selected background color permanent. When I call grid.clearSelection() on a split grid ( ex: splitAt(8) )

the function only clear the bgcolor on the right side of split grid (column > 8) but on the left side. Is there a way to clear

both sideds?



Thx

Problem confirmed and fixed for initial build of dhtmlxgrid 1.5

You can contact us directly at support@dhtmlx.com to receive updated version of js file, or you can just add next command
    grid.clearSelection();
    grid._fake.clearSelection();   //to clear selection in left part of splitted grid

Also you can try to use
    grid.clearSelection(true);