I have onMouseOver to execute the function while cursor on the row on any one of the grid.I would like to know what is the funtion or what to do when i want to execute the funtion onMouseOut.please advise me
If you need a function, called when mouse moved outside of grid you can use next code
dhtmlxEvent(grid.obj,(_isIE?“mouseleave”:“mouseout”),function(e){
//any code here
});