fires when the user clicks on the 'View more' link in the Month view (the Month view only)
date | object | the date of the cell inside which the user clicks on the 'View more' link |
boolean | defines whether the default action of the event will be triggered (true) or canceled (false) |
scheduler.attachEvent("onViewMoreClick", function(date){
//any custom logic here
});
The event is blockable. Return false, and the Month view won't be changed to the Day view after clicking on the 'View more' link.