DayPilot.Calendar.loadingLabelText

The loadingLabelText property (string) specifies the text/HTML of the loading label. See also loadingLabelVisible.

If the built-in XSS protection is enabled (see the xssProtection property), the text will be HTML-encoded. To specify raw HTML, use loadingLabelHtml.

Declaration

DayPilot.Calendar.loadingLabelText

Default Value

"Loading..."

Examples

JavaScript

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

Angular

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

React

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

Vue

<DayPilotCalendar
  loadingLabelText="Please wait..."
  <!-- ... -->
/>

See Also

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript