DayPilot.Scheduler.allowMultiRange

The allowMultiRange property (boolean) allows selecting multiple time ranges in the Scheduler.

Declaration

DayPilot.Scheduler.allowMultiRange

Default Value

false

Examples

JavaScript

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

Angular

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

React

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

Vue

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

See Also

Scheduler Multi-Range Selecting [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript