The eventResizingStartEndFormat property (string) specifies the date/time format used by the target position indicators shown during event resizing.
Declaration
DayPilot.Scheduler.eventResizingStartEndFormatDefault Value
"MMMM d, yyyy"Notes
The indicators can be enabled using eventResizingStartEndEnabled.
The format string uses the pattern syntax described by DayPilot.Date.toString().
Examples
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"
<!-- ... -->
/>See Also
DayPilot.Scheduler.eventResizingStartEndEnabled
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot