The loadingLabelHtml property (string) specifies the HTML of the loading label.
Declaration
DayPilot.Month.loadingLabelHtmlDefault Value
nullNotes
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot