DayPilot.Scheduler.eventResizingStartEndFormat

The eventResizingStartEndFormat property (string) specifies the date/time format used by the target position indicators shown during event resizing.

Declaration

DayPilot.Scheduler.eventResizingStartEndFormat

Default 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.Date.toString()

DayPilot.Scheduler.eventResizingStartEndEnabled

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript