The eventResizingStartEndFormat property (string) specifies the date/time format used by the target position indicators shown during event resizing.
DayPilot.Scheduler.eventResizingStartEndFormat"MMMM d, yyyy"The indicators can be enabled using eventResizingStartEndEnabled.
The format string uses the pattern syntax described by DayPilot.Date.toString().
JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventResizingStartEndFormat: "h:mm tt",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventResizingStartEndFormat: "h:mm tt",
// ...
};React
<DayPilotScheduler
eventResizingStartEndFormat="h:mm tt"
{/* ... */}
/>Vue
<DayPilotScheduler
eventResizingStartEndFormat="h:mm tt"
<!-- ... -->
/>