DayPilot.Scheduler.loadingLabelHtml

The loadingLabelHtml property (string) defines the HTML of the loading indicator.

This is a raw HTML value that will not be HTML-encoded (see XSS protection). To have the value encoded automatically, you can use loadingLabelText.

Default Value

null

Example

const scheduler = new DayPilot.Scheduler("dp", {
  loadingLabelHtml: "<img src="wait.png" />";
  // ...
});

scheduler.init();