The autoRefreshMaxCount property (number) specifies the maximum number of onAutoRefresh invocations.
DayPilot.Month.autoRefreshMaxCount20JavaScript
const dp = new DayPilot.Month("dp", {
autoRefreshEnabled: true,
autoRefreshMaxCount: 100,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
autoRefreshEnabled: true,
autoRefreshMaxCount: 100,
// ...
};React
<DayPilotMonth
autoRefreshEnabled={true}
autoRefreshMaxCount={100}
{/* ... */}
/>Vue
<DayPilotMonth
:autoRefreshEnabled="true"
:autoRefreshMaxCount="100"
<!-- ... -->
/>DayPilot.Month.autoRefreshMaxCount
DayPilot.Month.autoRefreshEnabled