Check documentation for the latest version of dhtmlxSuite onMouseIn DHTMLX Docs

onMouseIn

fires when the mouse pointer is hovered over an item

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

Example

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

Back to top