The loadingLabelText property (string) specifies the text of the loading label in the JavaScript Month component.
By default, the text is HTML-encoded automatically. See also DayPilot.Month.xssProtection.
DayPilot.Month.loadingLabelText"Loading..."JavaScript
const dp = new DayPilot.Month("dp", {
loadingLabelText: "Please wait...",
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
loadingLabelText: "Please wait...",
// ...
};React
<DayPilotMonth
loadingLabelText="Please wait..."
{/* ... */}
/>Vue
<DayPilotMonth
loadingLabelText="Please wait..."
<!-- ... -->
/>