The loadingLabelHtml property (string) specifies the HTML of the loading label.
DayPilot.Month.loadingLabelHtmlnullIf specified, this value is used as raw HTML regardless of the DayPilot.Month.xssProtection setting, and it is used instead of DayPilot.Month.loadingLabelText.
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>"
<!-- ... -->
/>DayPilot.Month.loadingLabelVisible