Check documentation for the latest version of dhtmlxSuite onClick DHTMLX Docs

onClick

fires when the user clicks on a date in a calendar

void onClick(Date date);
dateDateclicked date

Example

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

Back to top