fires when the user clicks on the 'Today' button in the scheduler
boolean | defines whether the default action of the event will be triggered (true) or canceled (false) |
scheduler.attachEvent("onBeforeTodayDisplayed", function (){
//any custom logic here
return true;
});
Back to top