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.
Declaration
DayPilot.Month.loadingLabelTextDefault Value
"Loading..."Examples
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..."
<!-- ... -->
/>See Also
DayPilot.Month.loadingLabelVisible
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot