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