The eventMovingStartEndEnabled property (boolean) enables inline target date/time indicators during event moving in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.eventMovingStartEndEnabledDefault Value
falseNotes
Use DayPilot.Scheduler.eventMovingStartEndFormat to change the text displayed by the inline indicators.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventMovingStartEndEnabled: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventMovingStartEndEnabled: true,
// ...
};React
<DayPilotScheduler
eventMovingStartEndEnabled={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:eventMovingStartEndEnabled="true"
<!-- ... -->
/>See Also
Event Moving [doc.daypilot.org]
DayPilot.Scheduler.eventMovingStartEndFormat
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot