The jointEventsMove property (boolean) specifies whether joint events displayed by the JavaScript Scheduler will be moved together.
Declaration
DayPilot.Scheduler.jointEventsMoveDefault Value
trueExamples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
jointEventsMove: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
jointEventsMove: false,
// ...
};React
<DayPilotScheduler
jointEventsMove={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:jointEventsMove="false"
<!-- ... -->
/>See Also
Joint Events [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot