DayPilot.Navigator.eventEndSpec

The eventEndSpec property (string) determines how the Navigator interprets the event end date, either as an exact point in time or as a date-only value.

Available since 2025.4.6728.

Declaration

DayPilot.Navigator.eventEndSpec

Possible Values

  • "DateTime" - interprets the event end as an exact date and time value.

  • "Date" - interprets the event end as a date-only value.

Default Value

"DateTime"

Examples

JavaScript

const dp = new DayPilot.Navigator("dp", {
  eventEndSpec: "Date",
  // ...
});
dp.init();

Angular

<daypilot-navigator [config]="config"></daypilot-navigator>
config: DayPilot.NavigatorConfig = {
  eventEndSpec: "Date",
  // ...
};

React

<DayPilotNavigator
  eventEndSpec="Date"
  {/* ... */}
/>

Vue

<DayPilotNavigator
  eventEndSpec="Date"
  <!-- ... -->
/>

See Also

DayPilot.Navigator Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript