'says' to show multi-day events in the regular way (as one-day events are displayed)
The property requires the all_timed plugin to be activated.
As a string the parameter can take the only value - 'short'.
So, there are 3 possible values that the parameter can take:
To provide better control over which events are displayed in the multi-day section and which are displayed in the day columns,
redefine the isMainAreaEvent
method of the module in the following way:
const { isMainAreaEvent } = scheduler.ext.allTimed;
scheduler.ext.allTimed.isMainAreaEvent = function(event) {
if(event.multidaySection){
return false;
}else{
return isMainAreaEvent(event);
}
};
The plugin is activated by default starting from v7.2
Back to top