The allowMultiSelect property (boolean) enables selecting multiple events at the same time in the JavaScript Month component.
DayPilot.Month.allowMultiSelectfalseJavaScript
const dp = new DayPilot.Month("dp", {
allowMultiSelect: true,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
allowMultiSelect: true,
// ...
};React
<DayPilotMonth
allowMultiSelect={true}
{/* ... */}
/>Vue
<DayPilotMonth
:allowMultiSelect="true"
<!-- ... -->
/>Event Selecting [doc.daypilot.org]