onViewMoreClick

fires when the user clicks on the 'View more' link in the Month view (the Month view only)

boolean onViewMoreClick(object date);
dateobjectthe date of the cell inside which the user clicks on the 'View more' link
booleandefines whether the default action of the event will be triggered (true) or canceled (false)

Example

scheduler.attachEvent("onViewMoreClick", function(date){
    //any custom logic here
});

Related samples

Details

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.

See also
Back to top