The autoRefreshEnabled property (boolean) enables auto refresh for the Calendar component.
DayPilot.Calendar.autoRefreshEnabledfalseJavaScript
const calendar = new DayPilot.Calendar("dp", {
autoRefreshEnabled: true,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
autoRefreshEnabled: true,
// ...
};React
<DayPilotCalendar
autoRefreshEnabled={true}
{/* ... */}
/>Vue
<DayPilotCalendar
:autoRefreshEnabled="true"
<!-- ... -->
/>Auto Refresh [doc.daypilot.org]