Scheduler Tabs

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



Thanks

You can use onViewChange event

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