The allowMultiRange property (boolean) allows selecting multiple time ranges in the Scheduler.
DayPilot.Scheduler.allowMultiRangefalseJavaScript
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"
<!-- ... -->
/>Scheduler Multi-Range Selecting [doc.daypilot.org]
Event calendar/scheduling AJAX components. Available for JavaScript/HTML5/jQuery, ASP.NET, ASP.NET MVC. Build resource booking, project management, time tracking applications, personal and shared event calendars.
DayPilot