The loadingLabelHtml property (string) specifies the raw HTML of the loading label. See also loadingLabelVisible.
To set a text value (that will be HTML-encoded) use loadingLabelText.
If both loadingLabelText and LoadingLabelHtml are specified, loadingLabelHtml will be used.
DayPilot.Calendar.loadingLabelHtmlnullJavaScript
const calendar = new DayPilot.Calendar("dp", {
loadingLabelHtml: "Please wait...",
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
loadingLabelHtml: "Please wait...",
// ...
};React
<DayPilotCalendar
loadingLabelHtml="Please wait..."
{/* ... */}
/>Vue
<DayPilotCalendar
loadingLabelHtml="<b>Please wait...</b>"
<!-- ... -->
/>