DayPilot.Calendar.loadingLabelHtml

The loadingLabelHtml property (string) specifies the raw HTML of the loading label. See also loadingLabelVisible.

To set a text value (that will be HTML-encoded) use loadingLabelText.

If both loadingLabelText and LoadingLabelHtml are specified, loadingLabelHtml will be used.

Declaration

DayPilot.Calendar.loadingLabelHtml

Default Value

null

Examples

JavaScript

const calendar = new DayPilot.Calendar("dp", {
  loadingLabelHtml: "Please wait...",
  // ...
});
calendar.init();

Angular

<daypilot-calendar [config]="config"></daypilot-calendar>
config: DayPilot.CalendarConfig = {
  loadingLabelHtml: "Please wait...",
  // ...
};

React

<DayPilotCalendar
  loadingLabelHtml="Please wait..."
  {/* ... */}
/>

Vue

<DayPilotCalendar
  loadingLabelHtml="<b>Please wait...</b>"
  <!-- ... -->
/>

See Also

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript