Check documentation for the latest version of dhtmlxSuite onPopupHide DHTMLX Docs

onPopupHide

fires when a popup becomes hidden

void onPopupHide(Date date);
dateDatethe date of a cell with a tooltip

Example

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

Back to top