The loadingLabelVisible property (boolean) enables the built-in loading label in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.loadingLabelVisibleDefault Value
trueNotes
The loading label is displayed during internal callbacks in ASP.NET WebForms, ASP.NET MVC, and Java versions.
In the JavaScript version, you can show it using loadingStart() and hide it using loadingStop().
The loading label appears only if the operation takes more than 100 ms.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
loadingLabelVisible: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
loadingLabelVisible: false,
// ...
};React
<DayPilotScheduler
loadingLabelVisible={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:loadingLabelVisible="false"
<!-- ... -->
/>See Also
DayPilot.Scheduler.loadingLabelText
DayPilot.Scheduler.loadingStart()
DayPilot.Scheduler.loadingStop()
Loading Label [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot