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.eventMoveToPositionDefault Value
falseNotes
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]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot