The loadingLabelVisible property (boolean) enables or disables the calendar "Loading..." label in the JavaScript Month component.
Declaration
DayPilot.Month.loadingLabelVisibleDefault Value
trueExamples
JavaScript
const dp = new DayPilot.Month("dp", {
loadingLabelVisible: false,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
loadingLabelVisible: false,
// ...
};React
<DayPilotMonth
loadingLabelVisible={false}
{/* ... */}
/>Vue
<DayPilotMonth
:loadingLabelVisible="false"
<!-- ... -->
/>See Also
DayPilot.Month.loadingLabelText
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot