Check documentation for the latest version of dhtmlxSuite onMouseMove DHTMLX Docs

onMouseMove

fires when the mouse pointer is moved over an item

void onMouseMove(string|number id,Event object ev,object html);
idstring|numberid of the item
evEvent objectnative event object
htmlobjecttarget HTML element

Example

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

Back to top