The eventMovingStartEndEnabled property (boolean) enables inline target date/time indicators during event moving in the JavaScript Calendar component.
DayPilot.Calendar.eventMovingStartEndEnabledtrue - shows the start and end indicators next to the event shadow while it is being dragged.
false - hides the inline indicators during event moving.
falseUse DayPilot.Calendar.eventMovingStartEndFormat to control how the indicator text is formatted.
JavaScript
const calendar = new DayPilot.Calendar("dp", {
eventMovingStartEndEnabled: true,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
eventMovingStartEndEnabled: true,
// ...
};React
<DayPilotCalendar
eventMovingStartEndEnabled={true}
{/* ... */}
/>Vue
<DayPilotCalendar
:eventMovingStartEndEnabled="true"
<!-- ... -->
/>Event Moving [doc.daypilot.org]
DayPilot.Calendar.eventMovingStartEndFormat