CoreUI Angular Logo
Framework:
  • JavaScript / Vanilla JS
  • React.js
  • Vue.js
Getting startedIntroductionSupport CoreUICustomizeSassOptionsCSS VariablesLayoutBreakpointsContainersGridColumnsGuttersFormsOverviewAutocompletePRODate PickerPRODate Range PickerPROForm ControlSelectMulti SelectPROChecks & RadiosOTP InputPROPassword InputPRORangeRange SliderPRORatingPROStepperPROInput GroupFloating LabelsLayoutTime PickerPROValidationComponentsAccordionAlertAvatarBadgeBreadcrumbButtonButton GroupCalendarPROCalloutCardCarouselClose buttonCollapseDropdownFooterHeaderImageList GroupLoading ButtonPROModalNavNavbarOffcanvasPaginationPlaceholderPopoverProgressSmart PaginationPROSmart TablePROSidebarSpinnerTableTabsNewToastTooltipWidgetsIconsChartsTemplatesNewAdmin & DashboardDownloadInstallationCustomizeContentMigrationv4 → v5v3 → v4Angular version
Pricing


DownloadHire UsGet CoreUI PRO
On this page
    CoreUI PRO for Angular This component is part of CoreUI PRO – a powerful UI library with over 250 components and 25+ templates, designed to help you build modern, responsive apps faster. Fully compatible with Angular, Bootstrap, React.js, and Vue.js. Get CoreUI PRO

    Angular Date Picker Component

    Create consistent cross-browser and cross-device Angular date picker.

    Examples

    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7
    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    Loading...
    import { Component } from '@angular/core';
    import { ColComponent, DatePickerComponent, RowComponent } from '@coreui/angular';
    
    @Component({
      selector: 'docs-date-picker01',
      templateUrl: './date-picker01.component.html',
      standalone: true,
      imports: [RowComponent, ColComponent, DatePickerComponent]
    })
    export class DatePicker01Component {
    
      public date = new Date();
    
    }
    

    With footer

    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7
    Nov 26, 2025
    Loading...
    import { Component } from '@angular/core';
    import { DatePipe } from '@angular/common';
    import {
      ButtonDirective,
      ColComponent,
      DatePickerComponent,
      DropdownCloseDirective,
      RowComponent,
      TemplateIdDirective
    } from '@coreui/angular';
    
    @Component({
      selector: 'docs-date-picker02',
      templateUrl: './date-picker02.component.html',
      standalone: true,
      imports: [
        RowComponent,
        ColComponent,
        DatePickerComponent,
        TemplateIdDirective,
        ButtonDirective,
        DropdownCloseDirective,
        DatePipe
      ]
    })
    export class DatePicker02Component {
      public date?: Date | null = new Date();
      public calendarDate = new Date(Date.now());
    
      onToday() {
        this.calendarDate = new Date(Date.now());
      }
    
      onCancel() {
        this.date = null;
      }
    }
    

    Sizing

    Set heights using size property like size="lg" and size="sm".

    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7
    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7
    Loading...

    Disabled

    Add the disabled boolean attribute on an input to give it a grayed out appearance and remove pointer events.

    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7
    Loading...

    Readonly

    Add the inputReadOnly boolean attribute to prevent modification of the input value.

    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7
    Loading...

    Format

    Control the format of the date displayed in the input using the format property according to locale rules. Makes the date input read-only.

    lun
    mar
    mié
    jue
    vie
    sáb
    dom
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7
    Loading...
    import { ChangeDetectionStrategy, Component } from '@angular/core';
    import { registerLocaleData } from '@angular/common';
    import localeEs from '@angular/common/locales/es';
    
    import { ColComponent, DatePickerComponent, RowComponent } from '@coreui/angular';
    
    registerLocaleData(localeEs);     // es-ES
    
    @Component({
      selector: 'docs-date-picker15',
      templateUrl: './date-picker15.component.html',
      changeDetection: ChangeDetectionStrategy.OnPush,
      standalone: true,
      imports: [RowComponent, ColComponent, DatePickerComponent]
    })
    export class DatePicker15Component {}
    

    Disabled dates

    Add dates user cannot select using the disabledDates property.

    Mo
    Di
    Mi
    Do
    Fr
    Sa
    So
    28
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    Loading...
    import { Component } from '@angular/core';
    import { ColComponent, DatePickerComponent, RowComponent } from '@coreui/angular';
    
    @Component({
      selector: 'docs-date-picker06',
      templateUrl: './date-picker06.component.html',
      standalone: true,
      imports: [RowComponent, ColComponent, DatePickerComponent]
    })
    export class DatePicker06Component {
    
      public calendarDate = new Date(2022, 2, 1);
      public disabledDates = [
        [new Date(2022, 2, 4), new Date(2022, 2, 7)], // range of dates that cannot be selected
        new Date(2022, 2, 16), // single date that cannot be selected
        new Date(2022, 3, 16),
        [new Date(2022, 4, 2), new Date(2022, 4, 8)]
      ];
      public maxDate = new Date(2022, 5, 0);
      public minDate = new Date(2022, 0, 1);
    
      dateFilter = (date: Date | null): boolean => {
        const day = date?.getDay();
        return day !== 0;
      };
    }
    

    Non-english locale

    Auto

    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7
    Loading...

    Chinese

    周一
    周二
    周三
    周四
    周五
    周六
    周日
    27日
    28日
    29日
    30日
    31日
    1日
    2日
    3日
    4日
    5日
    6日
    7日
    8日
    9日
    10日
    11日
    12日
    13日
    14日
    15日
    16日
    17日
    18日
    19日
    20日
    21日
    22日
    23日
    24日
    25日
    26日
    27日
    28日
    29日
    30日
    1日
    2日
    3日
    4日
    5日
    6日
    7日
    Loading...

    Japanese

    月
    火
    水
    木
    金
    土
    日
    27日
    28日
    29日
    30日
    31日
    1日
    2日
    3日
    4日
    5日
    6日
    7日
    8日
    9日
    10日
    11日
    12日
    13日
    14日
    15日
    16日
    17日
    18日
    19日
    20日
    21日
    22日
    23日
    24日
    25日
    26日
    27日
    28日
    29日
    30日
    1日
    2日
    3日
    4日
    5日
    6日
    7日
    Loading...

    Korean

    월
    화
    수
    목
    금
    토
    일
    27일
    28일
    29일
    30일
    31일
    1일
    2일
    3일
    4일
    5일
    6일
    7일
    8일
    9일
    10일
    11일
    12일
    13일
    14일
    15일
    16일
    17일
    18일
    19일
    20일
    21일
    22일
    23일
    24일
    25일
    26일
    27일
    28일
    29일
    30일
    1일
    2일
    3일
    4일
    5일
    6일
    7일
    Loading...

    Right to left support

    RTL support is built-in and can be explicitly controlled through the $enable-rtl variables in scss.

    Hebrew

    ב׳
    ג׳
    ד׳
    ה׳
    ו׳
    ש׳
    א׳
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7
    Loading...

    Persian

    د
    س
    چ
    پ
    ج
    ش
    ی
    ۵
    ۶
    ۷
    ۸
    ۹
    ۱۰
    ۱۱
    ۱۲
    ۱۳
    ۱۴
    ۱۵
    ۱۶
    ۱۷
    ۱۸
    ۱۹
    ۲۰
    ۲۱
    ۲۲
    ۲۳
    ۲۴
    ۲۵
    ۲۶
    ۲۷
    ۲۸
    ۲۹
    ۳۰
    ۱
    ۲
    ۳
    ۴
    ۵
    ۶
    ۷
    ۸
    ۹
    ۱۰
    ۱۱
    ۱۲
    ۱۳
    ۱۴
    ۱۵
    ۱۶
    Loading...

    Forms

    Angular handles user input through reactive and template-driven forms. CoreUI Date Picker supports both options.

    Reactive

    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7

    Form value: { "datePicker": "2025-11-25T23:00:00.000Z" }
    datePicker value: 11/26/2025
    Loading...
    Loading...

    Template-driven

    Mon
    Tue
    Wed
    Thu
    Fri
    Sat
    Sun
    27
    28
    29
    30
    31
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    1
    2
    3
    4
    5
    6
    7

    Form value: { "datePicker": "2025-11-26T23:00:00.000Z" }
    datePicker value: Thursday, November 27, 2025
    Loading...
    Loading...

    API reference

    DatePicker Module

    import { 
     DatePickerModule,
     DropdownModule,
     SharedModule
    } from '@coreui/angular';
    
    @NgModule({
       imports: [
         DatePickerModule,
         DropdownModule,
         SharedModule
       ]
    })
    export class AppModule() { }
    

    c-date-picker

    component

    Inputs
    name description type default
    date Initial selected date. Date undefined
    calendarDate Default date month of the component. Date undefined
    cleaner Toggle visibility or set the content of the cleaner button. boolean true
    closeOnSelect Determine if dropdown should be closed when component value is set. boolean false
    disabled Toggle the disabled state for the component. boolean false
    disabledDates List of dates that cannot be selected. (Date | Date[])[] undefined
    firstDayOfWeek Sets the day of start week. number 1
    format
    4.5.26+
    Formats a date display. See: DatePipe format options. Makes the input read-only. string undefined
    disabled Toggle the disabled state for the component. boolean false
    indicator Toggle visibility or set the content of the input indicator. boolean true
    inputReadOnly Toggle the readonly state for the input. boolean false
    locale Sets the default locale for components. If not set, it is inherited from the browser. string default
    maxDate Max selectable date. Date undefined
    minDate Min selectable date. Date undefined
    navYearFirst Reorder year-month navigation, and render year first. boolean false
    navigation Show arrows navigation. boolean true
    placeholder Specifies hint visible in date input. string Select date
    size Size the component input small or large. sm | lg undefined
    dayFormat Set the format of day number. numeric | 2-digit | (date: Date) => string | number numeric
    weekdayFormat Set length or format of day name, number | long | narrow | short 2
    selectAdjacentDays
    4.5.5+
    Days in adjacent months shown before or after the current month are selectable. This only applies if the showAdjacentDays option is set to true. boolean false
    showAdjacentDays
    4.5.5+
    Display dates in adjacent months (non-selectable) at the start/end of the current month. boolean true
    valid Set input validation visual feedback. boolean undefined
    showWeekNumber Display ISO week numbers in month view. boolean undefined
    weekNumbersLabel Label displayed over week numbers in the calendar. string undefined
    inputDateFormat Custom function to format the selected date into a string according to a custom format. (date: Date) => string undefined
    inputDateParse Custom function to parse the input value into a valid Date object. `(date: string Date) => Date`
    Outputs
    name description type
    dateChange Event emitted on date change Date
    calendarCellHover Event emitted on calendar cell hover Date
    calendarDateChange Event emitted on calendar month change Date
    valueChange Event emitted on value change Date
    • GitHub
    • Twitter
    • Support
    • CoreUI (Vanilla)
    • CoreUI for React.js
    • CoreUI for Vue.js

    CoreUI for Angular is Open Source UI Components Library for Angular.

    Currently v5.5.25 Code licensed MIT , docs CC BY 3.0 .
    CoreUI PRO requires a commercial license.

    Advertisement