Check documentation for the latest version of dhtmlxSuite onCalendarShow DHTMLX Docs

onCalendarShow

fires when a calendar pops up in the grid

void onCalendarShow(object myCal,string|number row_id,number col_ind);
myCalobjectthe calendar object
row_idstring|numberthe id of the related row
col_indnumberthe index of the related column

Example

grid.attachEvent("onCalendarShow",function(myCal,row_id,col_ind){
    //your code here
});

Back to top