onAfterEventDisplay

fires when the scheduler switches views, days, time etc. to show the event specified by the 'showEvent' method and fires AFTER the event is displayed

void onAfterEventDisplay(object event,string view);
eventobjectthe event's object
viewstringthe name of a view used to display the event

Example

scheduler.attachEvent("onAfterEventDisplay", function(event,view){
    //any custom logic here
});

See also
Back to top