Categories | Question details Back To List | ||
Buttons on Calendar Header Hi, Is there anyway to attach events to the buttons on the calendar's header? Thanks, Joe Answer posted by Alex (support) on Jul 17, 2009 01:57 hello, it is possible only by code modification. lines 624-674 of the dhtmlxcalender.js define header buttons. You can add event call to the each button here (highlighted lines should be added): ...
calendar.attachEvent("onButtonClick",function(type){ if(type=="click") ... }) |