DayPilot.Scheduler.autoRefreshEnabled

The autoRefreshEnabled property (boolean) enables the AutoRefresh feature in the JavaScript Scheduler component.

Declaration

DayPilot.Scheduler.autoRefreshEnabled

Default Value

false

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  autoRefreshEnabled: true,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  autoRefreshEnabled: true,
  // ...
};

React

<DayPilotScheduler
  autoRefreshEnabled={true}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :autoRefreshEnabled="true"
  <!-- ... -->
/>

See Also

AutoRefresh

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript