The eventResizingStartEndEnabled property (boolean) enables inline target date/time indicators during event resizing in the JavaScript Calendar component.
DayPilot.Calendar.eventResizingStartEndEnabledtrue - shows the start and end indicators next to the resizing shadow while the event is being resized.
false - hides the inline indicators during event resizing.
falseUse DayPilot.Calendar.eventResizingStartEndFormat to control how the indicator text is formatted.
The indicators update continuously while the resize handles move, which makes it easier to read the target start and end times before the drop completes.
JavaScript
const calendar = new DayPilot.Calendar("dp", {
eventResizingStartEndEnabled: true,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
eventResizingStartEndEnabled: true,
// ...
};React
<DayPilotCalendar
eventResizingStartEndEnabled={true}
{/* ... */}
/>Vue
<DayPilotCalendar
:eventResizingStartEndEnabled="true"
<!-- ... -->
/>Event Resizing [doc.daypilot.org]
DayPilot.Calendar.eventResizingStartEndFormat
DayPilot.Calendar.eventResizeHandling