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.
DayPilot.Calendar.loadingLabelText"Loading..."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..."
<!-- ... -->
/>