The autoRefreshMaxCount property (number) specifies the maximum number of onAutoRefresh invocations.
Declaration
DayPilot.Calendar.autoRefreshMaxCountDefault Value
20Examples
JavaScript
const dp = new DayPilot.Calendar("dp", {
autoRefreshMaxCount: 100,
// ...
});
dp.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
autoRefreshMaxCount: 100,
// ...
};React
<DayPilotCalendar
autoRefreshMaxCount={100}
{/* ... */}
/>Vue
<DayPilotCalendar
:autoRefreshMaxCount="100"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot