Check documentation for the latest version of dhtmlxSuite onMouseOut DHTMLX Docs

onMouseOut

fires when the mouse pointer is moved out of the dataview, or out of some item in the dataview

void onMouseOut(Event object ev);
evEvent objectnative event object

Example

myDataView.attachEvent("onMouseOut", function (ev){
    // your code here
    return true;
});

Back to top