DayPilot.Scheduler.allowMultiSelect

The allowMultiSelect property (boolean) enables the event multi-selecting feature in the JavaScript Scheduler.

Declaration

DayPilot.Scheduler.allowMultiSelect

Default Value

false

Examples

JavaScript

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"
  <!-- ... -->
/>

See Also

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript