The showAllDayEvents property (boolean) enables all-day events in the Calendar component.
When you enable all-day events, the Calendar will display a special row at the bottom of the column headers. The all-day row will be always visible (even if there are no all-day event records).
DayPilot.Calendar.showAllDayEventsfalseJavaScript
const calendar = new DayPilot.Calendar("dp", {
showAllDayEvents: true,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
showAllDayEvents: true,
// ...
};React
<DayPilotCalendar
showAllDayEvents={true}
{/* ... */}
/>Vue
<DayPilotCalendar
:showAllDayEvents="true"
<!-- ... -->
/>