Check documentation for the latest version of dhtmlxSuite onMouseOver DHTMLX Docs

onMouseOver

fires when the user moves the mouse cursor over the specified date

void onMouseOver(Date date,Event e);
dateDatethe specified date
eEventa native event object

Example

myCalendar.attachEvent("onMouseOver", function(date, e){
    // your code here
});

Back to top