Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Xaxan on Aug 04, 2009 00:54
open dhtmlx forum
Scheduler Tabs

Is it possible to get timestamp when user clicks on month tab or weekly ...?

Thanks
Answer posted by Support on Aug 04, 2009 01:51
You can use onViewChange event

scheduler.attachEvent("onViewChange",function(mode,date){
        //date - js date object
       alert("Current date " + date); 
})