dhtmlxGrid - unhighlight row after remove cursor from cell

Hi,



I’m using dhtmlxGrid 1.5 Pro and I enabled LightMouseNavigation. When I hover rows there is a highlighting, how to remove this highlighting after moving cursor outside grid area?



thanks

There is no API call , but can be done with next two lines of code

mygrid = new dhtmlXGridObject(‘gridbox’);

dhtmlxEvent(mygrid.entBox,“mousemove”,function(e){ (e||event).cancelBubble=true;});
dhtmlxEvent(document.body,“mousemove”,function(){ mygrid.clearSelection(); });