The eventMoveToPosition property (boolean) activates a special event moving mode that allows moving events to a specified position in the target cell.
DayPilot.Scheduler.eventMoveToPositionfalseSee Event Position for details about positioning events inside the target cell.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventMoveToPosition: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventMoveToPosition: true,
// ...
};React
<DayPilotScheduler
eventMoveToPosition={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:eventMoveToPosition="true"
<!-- ... -->
/>Event Position [doc.daypilot.org]