Calendar

Calendar is an input component to select a date.


import { CalendarModule } from 'primeng/calendar';

Two-way value binding is defined using the standard ngModel directive referencing to a Date property.


<p-calendar [(ngModel)]="date"></p-calendar>

Calendar can also be used with reactive forms. In this case, the formControlName property is used to bind the component to a form control.


<form [formGroup]="formGroup">
    <p-calendar formControlName="date"></p-calendar>
</form>

Default date format is mm/dd/yy which can be customized using the dateFormat property. Following options can be a part of the format.

  • d - day of month (no leading zero)
  • dd - day of month (two digit)
  • o - day of the year (no leading zeros)
  • oo - day of the year (three digit)
  • D - day name short
  • DD - day name long
  • m - month of year (no leading zero)
  • mm - month of year (two digit)
  • M - month name short
  • MM - month name long
  • y - year (two digit)
  • yy - year (four digit)
  • @ - Unix timestamp (ms since 01/01/1970)
  • ! - Windows ticks (100ns since 01/01/0001)
  • '...' - literal text
  • '' - single quote
  • anything else - literal text

<p-calendar [(ngModel)]="date" dateFormat="dd.mm.yy"></p-calendar>

Locale for different languages and formats is defined globally, refer to the PrimeNG Locale configuration for more information.

An additional icon is displayed next to the input field when showIcon is present.


<p-calendar [(ngModel)]="date1" [showIcon]="true"></p-calendar>
<p-calendar [(ngModel)]="date2" [iconDisplay]="'input'" [showIcon]="true"></p-calendar>
<p-calendar [(ngModel)]="date3" [iconDisplay]="'input'" [showIcon]="true" inputId="templatedisplay">
    <ng-template pTemplate="inputicon" let-clickCallBack="clickCallBack">
        <i class="pi pi-user pointer-events-none" (click)="clickCallBack($event)"></i>
    </ng-template>
</p-calendar>

Boundaries for the permitted dates that can be entered are defined with minDate and maxDate properties.


<p-calendar [(ngModel)]="date" [minDate]="minDate" [maxDate]="maxDate" [readonlyInput]="true"></p-calendar>

In order to choose multiple dates, set selectionMode as multiple. In this mode, the value binding should be an array.


<p-calendar [(ngModel)]="dates" selectionMode="multiple" [readonlyInput]="true"></p-calendar>

A range of dates can be selected by defining selectionMode as range, in this case the bound value would be an array with two values where first date is the start of the range and second date is the end.


<p-calendar [(ngModel)]="rangeDates" selectionMode="range" [readonlyInput]="true"></p-calendar>

When showButtonBar is present, today and clear buttons are displayed at the footer.


<p-calendar [(ngModel)]="date" [showButtonBar]="true"></p-calendar>

TimePicker is enabled with showTime property and 24 (default) or 12 hour mode is configured using hourFormat option.


<p-calendar [(ngModel)]="date" [showTime]="true" [showSeconds]="true"></p-calendar>

Month only picker is enabled by specifying view as month in addition to a suitable dateFormat.


<p-calendar [(ngModel)]="date" view="month" dateFormat="mm/yy" [readonlyInput]="true"></p-calendar>

Similar to the month picker, year picker can be used to select years only. Set view to year to display the year picker.


<p-calendar [(ngModel)]="date" view="year" dateFormat="yy" inputId="yearpicker"></p-calendar>

Number of months to display is configured with the numberOfMonths property.


<p-calendar [(ngModel)]="date" [numberOfMonths]="3"></p-calendar>

Calendar UI accepts custom content using header and footer templates.


<p-calendar [(ngModel)]="date">
    <ng-template pTemplate="header">Header</ng-template>
    <ng-template pTemplate="footer">Footer</ng-template>
</p-calendar>

Custom content can be placed inside date cells with the ng-template property that takes a Date as a parameter.


<p-calendar [(ngModel)]="date">
    <ng-template pTemplate="date" let-date>
        <span [ngStyle]="{textDecoration: (date.day < 21 && date.day > 10) ? 'line-through' : 'inherit'}">{{date.day}}</span>
    </ng-template>
</p-calendar>

When touchUI is enabled, overlay is displayed as optimized for touch devices.


<p-calendar [(ngModel)]="date" [touchUI]="true" [readonlyInput]="true"></p-calendar>

Calendar is displayed as a popup by default, add inline property to customize this behavior.

WkSuMoTuWeThFrSa
13 31123456
14 78910111213
15 14151617181920
16 21222324252627
17 2829301234

<p-calendar class="max-w-full" [(ngModel)]="date" [inline]="true" [showWeek]="true"></p-calendar>

A floating label appears on top of the input field when focused.


<span class="p-float-label">
    <p-calendar [(ngModel)]="date" inputId="birth_date"></p-calendar>
    <label for="birth_date">Birth Date</label>
</span>

Invalid state style is added using the ng-invalid and ng-dirty class to indicate a failed validation.


<p-calendar [(ngModel)]="date" class="ng-invalid ng-dirty"></p-calendar>

When disabled is present, the element cannot be edited and focused.


<p-calendar [(ngModel)]="date" [disabled]="true"></p-calendar>

Following is the list of structural style classes, for theming classes visit theming page.

NameElement
p-calendarMain container element
p-calendar-w-btnMain container element when button is enabled.
p-calendar-timeonlyMain container element in time picker only mode.
p-inputtextInput element
p-datepickerDatepicker element
p-datepicker-inlineDatepicker element in inline mode
p-datepicker-monthpickerDatepicker element in month view.
p-datepicker-touch-pDatepicker element in touch p mode.
p-datepicker-calendarTable containing dates of a month.
p-datepicker-current-dayCell of selected date.
p-datepicker-todayCell of today's date.

Screen Reader

Value to describe the component can either be provided via label tag combined with inputId prop or using aria-labelledby, aria-label props. The input element has combobox role in addition to aria-autocomplete as "none", aria-haspopup as "dialog" and aria-expanded attributes. The relation between the input and the popup is created with aria-controls attribute that refers to the id of the popup.

The optional calendar button requires includes aria-haspopup, aria-expanded for states along with aria-controls to define the relation between the popup and the button. The value to read is retrieved from the chooseDate key of the aria property from the locale API. This label is also used for the aria-label of the popup as well. When there is a value selected, it is formatted and appended to the label to be able to notify users about the current value.

Popup has a dialog role along with aria-modal and aria-label. The navigation buttons at the header has an aria-label retrieved from the prevYear, nextYear, prevMonth, nextMonth,prevDecade and nextDecade keys of the locale aria API. Similarly month picker button uses the chooseMonth and year picker button uses the chooseYear keys.

Main date table uses grid role that contains th elements with col as the scope along with abbr tag resolving to the full name of the month. Each date cell has an aria-label referring to the full date value. Buttons at the footer utilize their readable labels as aria-label as well. Selected date also receives the aria-selected attribute.

Timepicker spinner buttons get their labels for aria-label from the aria locale API using the prevHour, nextHour, prevMinute, nextMinute, prevSecond, nextSecond, am and pm keys.

Calendar also includes a hidden section that is only available to screen readers with aria-live as "polite". This element is updated when the selected date changes to instruct the user about the current date selected.


<label for="date1">Date</label>
<p-calendar inputId="date1"></p-calendar>

<span id="date2">Date</span>
<p-calendar ariaLabelledBy="date2"></p-calendar>

<p-calendar ariaLabel="Date"></p-calendar>

Choose Date Button Keyboard Support

KeyFunction
spaceOpens popup and moves focus to the selected date, if there is none focuses on today.
enterOpens popup and moves focus to the selected date, if there is none focuses on today.

Popup Keyboard Support

KeyFunction
escapeCloses the popup and moves focus to the input element.
tabMoves focus to the next focusable element within the popup.
shift + tabMoves focus to the next focusable element within the popup.

Header Buttons Keyboard Support

KeyFunction
enterTriggers the button action.
spaceTriggers the button action.

Date Grid Keyboard Support

KeyFunction
enterSelects the date, closes the popup and moves focus to the input element.
spaceSelects the date, closes the popup and moves focus to the input element.
up arrowMoves focus to the same day of the previous week.
down arrowMoves focus to the same day of the next week.
right arrowMoves focus to the next day.
left arrowMoves focus to the previous day.
homeMoves focus to the first day of the current week.
endMoves focus to the last day of the current week.
page upChanges the date to previous month in date picker mode. Moves to previous year in month picker mode and previous decade in year picker.
shift + page upChanges the date to previous year in date picker mode. Has no effect in month or year picker
page downChanges the date to next month in date picker mode. Moves to next year in month picker mode and next decade in year picker.
shift + page downChanges the date to next year in date picker mode. Has no effect in month or year picker

Footer Buttons Keyboard Support

KeyFunction
enterTriggers the button action.
spaceTriggers the button action.