DayPilot.Month.autoRefreshMaxCount

The autoRefreshMaxCount property (number) specifies the maximum number of onAutoRefresh invocations.

Declaration

DayPilot.Month.autoRefreshMaxCount

Default Value

20

Examples

JavaScript

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

Angular

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

React

<DayPilotMonth
  autoRefreshEnabled={true}
  autoRefreshMaxCount={100}
  {/* ... */}
/>

Vue

<DayPilotMonth
  :autoRefreshEnabled="true"
  :autoRefreshMaxCount="100"
  <!-- ... -->
/>

See Also

DayPilot.Month.autoRefreshMaxCount

DayPilot.Month.onAutoRefresh

DayPilot.Month.autoRefreshEnabled

DayPilot.Month.autoRefreshInterval

DayPilot.Month Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript