DayPilot.Scheduler.groupBubble

The groupBubble property (DayPilot.Bubble class) specifies a bubble object that will be used to display event group details on hover.

The args.source object has the following properties:

  • args.source.events - array of events in the group (DayPilot.Event objects)

Default Value

null

Example

dps.groupBubble = new DayPilot.Bubble({
  onLoad: (args) => {
      var count = args.source.events.length;
      args.html = `Click to expand this group with ${count} events.`;
  }
});

Related Properties