The allowMultiSelect property (boolean) enables the event multi-selecting feature in the JavaScript Scheduler.
DayPilot.Scheduler.allowMultiSelectfalseJavaScript
const dp = new DayPilot.Scheduler("dp", {
allowMultiSelect: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
allowMultiSelect: true,
// ...
};React
<DayPilotScheduler
allowMultiSelect={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:allowMultiSelect="true"
<!-- ... -->
/>Event Multi-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