Check documentation for the latest version of dhtmlxSuite onMouseOver DHTMLX Docs

onMouseOver

fires when the mouse pointer is moved over a cell

void onMouseOver(string|number id,number ind);
idstring|numberthe id of a row
indnumberthe index of a cell

Available only in PRO Edition

Example

grid.attachEvent("onMouseOver", function(id,ind){
    // your code here
});

Back to top