The autoRefreshEnabled property (boolean) enables auto refresh for the JavaScript Month component.
Declaration
DayPilot.Month.autoRefreshEnabledDefault Value
falseExamples
JavaScript
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"
<!-- ... -->
/>See Also
Auto Refresh [doc.daypilot.org]
DayPilot.Month.autoRefreshInterval
DayPilot.Month.autoRefreshMaxCount
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot