Check documentation for the latest version of dhtmlxSuite onMouseOut DHTMLX Docs

onMouseOut

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

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

Example

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

Back to top