onBeforeTodayDisplayed

fires when the user clicks on the 'Today' button in the scheduler

boolean onBeforeTodayDisplayed();
booleandefines whether the default action of the event will be triggered (true) or canceled (false)

Example

scheduler.attachEvent("onBeforeTodayDisplayed", function (){
    //any custom logic here
    return true;
});

Back to top