Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Jan 09, 2008 14:43
open dhtmlx forum
Mouse out/Mouse leave Dhtmlx Grid

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
Answer posted by Support on Jan 10, 2008 03:07
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
});