Skip to content

onMouseMove

fires when the mouse was moved over the specified component

function onMouseMove(
// the component id
id: string,
// a native event object
e: Event,
// the target HTML element
node: HTMLElement
): void
grid.attachEvent("onMouseMove", function(id, e, node){
//... some code here ...
});

Articles

API