Check documentation for the latest version of dhtmlxSuite onPopupShow DHTMLX Docs

onPopupShow

fires when a popup becomes visible

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

Example

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

Back to top