The loadingLabelVisible property (boolean) enables the built-in loading label in the JavaScript Scheduler component.
DayPilot.Scheduler.loadingLabelVisibletrueThe 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.
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"
<!-- ... -->
/>DayPilot.Scheduler.loadingLabelText
DayPilot.Scheduler.loadingStart()
DayPilot.Scheduler.loadingStop()
Loading Label [doc.daypilot.org]