Allows customization of the concurrent event group boxes.
Declaration
DayPilot.Scheduler.onBeforeGroupRender(args)
Parameters
- args.group.count - number of concurrent events in this group
- args.group.events - array of events in the group (DayPilot.Event objects), since 8.3.2847
- args.group.html - HTML of the group box
Example
dp.onBeforeGroupRender = function(args) {
args.group.html = args.group.count + " events in this group";
};