DayPilot.Scheduler.cellBubble

The cellBubble property specifies the DayPilot.Bubble object that is used to display time cell details on hover in the JavaScript Scheduler component.

Default Value

null

Example

Scheduler config:

{
  cellBubble: new DayPilot.Bubble({
    onLoad: (args) => { 
      const cell = args.source;
      args.html = cell.start + " " + cell.end + " " + cell.resource;
    }
  }),
  // ...
}

Related Properties