The jointEventsMove property (boolean) specifies whether joint events displayed by the JavaScript Scheduler will be moved together.
DayPilot.Scheduler.jointEventsMovetrueJavaScript
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"
<!-- ... -->
/>Joint Events [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