DayPilot.Scheduler.eventMoveToPosition

The eventMoveToPosition property (boolean) activates a special event moving mode that allows moving events to a specified position in the target cell.

Declaration

DayPilot.Scheduler.eventMoveToPosition

Default Value

false

Notes

See Event Position for details about positioning events inside the target cell.

Examples

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

See Also

Event Position [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript