DayPilot.Scheduler.autoRefreshInterval

The autoRefreshInterval property (number) specifies the delay between auto-refresh requests in seconds.

Declaration

DayPilot.Scheduler.autoRefreshInterval

Default Value

60

Examples

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

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript