The eventResizingStartEndEnabled property (boolean) enables target date/time indicators during event resizing.
Declaration
DayPilot.Scheduler.eventResizingStartEndEnabledDefault Value
falseNotes
The indicators are displayed only while the user is resizing an existing event.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventResizingStartEndEnabled: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventResizingStartEndEnabled: true,
// ...
};React
<DayPilotScheduler
eventResizingStartEndEnabled={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:eventResizingStartEndEnabled="true"
<!-- ... -->
/>See Also
Event Resizing [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot