fires after the current view has been changed to some other one
new_mode | string | a new view |
new_date | object | a new date |
scheduler.attachEvent("onViewChange", function (new_mode , new_date){
//any custom logic here
});
The event is called each time the current view is changed.
Back to top