DayPilot.Month.autoRefreshInterval

The autoRefreshInterval property (number) specifies the interval between onAutoRefresh event calls in seconds.

Declaration

DayPilot.Month.autoRefreshInterval

Default Value

60

Examples

JavaScript

const dp = new DayPilot.Month("dp", {
  autoRefreshEnabled: true,
  autoRefreshInterval: 120,
  // ...
});
dp.init();

Angular

<daypilot-month [config]="config"></daypilot-month>
config: DayPilot.MonthConfig = {
  autoRefreshEnabled: true,
  autoRefreshInterval: 120,
  // ...
};

React

<DayPilotMonth
  autoRefreshEnabled={true}
  autoRefreshInterval={120}
  {/* ... */}
/>

Vue

<DayPilotMonth
  :autoRefreshEnabled="true"
  :autoRefreshInterval="120"
  <!-- ... -->
/>

See Also

DayPilot.Month.onAutoRefresh

DayPilot.Month.autoRefreshEnabled

DayPilot.Month.autoRefreshMaxCount

DayPilot.Month Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript