fires when the mouse pointer is moved out of the dataview, or out of some item in the dataview
ev | Event object | native event object |
myDataView.attachEvent("onMouseOut", function (ev){
// your code here
return true;
});
Back to top