Check documentation for the latest version of dhtmlxSuite onMouseOut DHTMLX Docs

onMouseOut

fires when the mouse pointer is moved out of item's area

void onMouseOut(string|number id);
idstring|numberid of the clicked node

Example

myTree.attachEvent("onMouseOut", function(id){
    // your code here
});

Back to top