The loadingLabelText property (string) sets the text displayed by the loading label in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.loadingLabelTextDefault Value
"Loading..."Notes
Since version 2020.4.4701, the value is HTML-encoded as part of XSS protection.
To use raw HTML instead of encoded text, use loadingLabelHtml.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
loadingLabelText: "Please wait...",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
loadingLabelText: "Please wait...",
// ...
};React
<DayPilotScheduler
loadingLabelText="Please wait..."
{/* ... */}
/>Vue
<DayPilotScheduler
loadingLabelText="Please wait..."
<!-- ... -->
/>See Also
DayPilot.Scheduler.loadingLabelHtml
Loading Label [doc.daypilot.org]
XSS Protection [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot