DayPilot.Calendar.bubble

The bubble property (DayPilot.Bubble) sets the bubble object used to display event details on hover.

Default Value

new DayPilot.Bubble()

Example

dp.bubble = new DayPilot.Bubble({
  onLoad: function(args) {
      var ev = args.source;
      args.async = true;  // notify manually using .loaded()
      
      // simulating slow server-side load
      setTimeout(function() {
          args.html = "testing bubble for: <br>" + ev.text();
          args.loaded();
      }, 500);
  }
});

See Also