The autoRefreshMaxCount property (number) specifies the maximum number of onAutoRefresh invocations.
Declaration
DayPilot.Month.autoRefreshMaxCountDefault Value
20Examples
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.autoRefreshEnabled
DayPilot.Month.autoRefreshInterval
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot