The eventMovingStartEndFormat property (string) specifies the date/time format used by the target position indicators shown by the JavaScript Scheduler component during event moving.
DayPilot.Scheduler.eventMovingStartEndFormat"MMMM d, yyyy"The indicators are enabled using DayPilot.Scheduler.eventMovingStartEndEnabled.
The format string uses the patterns documented by DayPilot.Date.toString().
JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventMovingStartEndFormat: "h:mm tt",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventMovingStartEndFormat: "h:mm tt",
// ...
};React
<DayPilotScheduler
eventMovingStartEndFormat="h:mm tt"
{/* ... */}
/>Vue
<DayPilotScheduler
eventMovingStartEndFormat="h:mm tt"
<!-- ... -->
/>Event Moving Indicators [doc.daypilot.org]