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