Check documentation for the latest version of dhtmlxSuite onMouseOut DHTMLX Docs

onMouseOut

fires when the user moves the mouse cursor out of the specified date

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

Example

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

Back to top