DayPilot.Month.loadingLabelHtml

The loadingLabelHtml property (string) specifies the HTML of the loading label.

Declaration

DayPilot.Month.loadingLabelHtml

Default Value

null

Notes

If specified, this value is used as raw HTML regardless of the DayPilot.Month.xssProtection setting, and it is used instead of DayPilot.Month.loadingLabelText.

Examples

JavaScript

const dp = new DayPilot.Month("dp", {
  loadingLabelHtml: "<span>Loading...</span>",
  // ...
});
dp.init();

Angular

<daypilot-month [config]="config"></daypilot-month>
config: DayPilot.MonthConfig = {
  loadingLabelHtml: "<span>Loading...</span>",
  // ...
};

React

<DayPilotMonth
  loadingLabelHtml="<span>Loading...</span>"
  {/* ... */}
/>

Vue

<DayPilotMonth
  loadingLabelHtml="<span>Loading...</span>"
  <!-- ... -->
/>

See Also

DayPilot.Month.loadingLabelVisible

DayPilot.Month.loadingLabelText

DayPilot.Month.xssProtection

DayPilot.Month Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript