The autoRefreshInterval property (number) specifies the delay between auto-refresh requests in seconds.
Declaration
DayPilot.Scheduler.autoRefreshIntervalDefault Value
60Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
autoRefreshInterval: 120,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
autoRefreshInterval: 120,
// ...
};React
<DayPilotScheduler
autoRefreshInterval={120}
{/* ... */}
/>Vue
<DayPilotScheduler
:autoRefreshInterval="120"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot