The allowMultiRange property (boolean) allows selecting multiple time ranges in the Scheduler.
Declaration
DayPilot.Scheduler.allowMultiRangeDefault Value
falseExamples
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]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot