The loadingLabelText property (string) sets the text displayed by the loading label in the JavaScript Scheduler component.
DayPilot.Scheduler.loadingLabelText"Loading..."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.
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..."
<!-- ... -->
/>DayPilot.Scheduler.loadingLabelHtml
Loading Label [doc.daypilot.org]
XSS Protection [doc.daypilot.org]