The autoRefreshInterval property (number) specifies the interval between onAutoRefresh event calls in seconds.
Declaration
DayPilot.Calendar.autoRefreshIntervalDefault Value
60Examples
JavaScript
const dp = new DayPilot.Calendar("dp", {
autoRefreshInterval: 120,
// ...
});
dp.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
autoRefreshInterval: 120,
// ...
};React
<DayPilotCalendar
autoRefreshInterval={120}
{/* ... */}
/>Vue
<DayPilotCalendar
:autoRefreshInterval="120"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot