2016-06-19 11:17:09 +08:00
---
category: Components
2016-11-09 14:43:32 +08:00
type: Data Entry
2016-09-09 13:55:21 +08:00
title: DatePicker
2020-06-05 13:50:09 +08:00
cover: https://gw.alipayobjects.com/zos/alicdn/RT_USzA48/DatePicker.svg
2016-06-19 11:17:09 +08:00
---
2016-11-14 19:13:37 +08:00
To select or input a date.
2016-06-19 11:17:09 +08:00
## When To Use
By clicking the input box, you can select a date from a popup calendar.
## API
2019-12-11 23:32:19 +08:00
There are five kinds of picker:
2016-11-14 19:13:37 +08:00
2017-10-25 10:25:44 +08:00
- DatePicker
2020-07-23 11:25:17 +08:00
- DatePicker\[picker="month"]
- DatePicker\[picker="week"]
- DatePicker\[picker="year"]
- DatePicker\[picker="quarter"] (Added in 4.1.0)
2017-10-25 10:25:44 +08:00
- RangePicker
2016-11-14 19:13:37 +08:00
2018-05-21 21:51:39 +08:00
### Localization
2020-05-15 17:18:55 +08:00
The default locale is en-US, if you need to use other languages, recommend to use internationalized components provided by us at the entrance. Look at: [ConfigProvider ](https://ant.design/components/config-provider/ ).
2018-05-21 21:51:39 +08:00
If there are special needs (only modifying single component language), Please use the property: local. Example: [default ](https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json ).
```jsx
2020-07-30 13:56:18 +08:00
import 'moment/locale/zh-cn';
2019-08-05 15:29:26 +08:00
import locale from 'antd/es/date-picker/locale/zh_CN';
2018-05-21 21:51:39 +08:00
2019-05-07 14:57:32 +08:00
< DatePicker locale = {locale} / > ;
2018-05-21 21:51:39 +08:00
```
2016-09-09 13:55:21 +08:00
```jsx
2018-11-15 16:32:12 +08:00
// The default locale is en-US, if you want to use other locale, just set locale in entry file globally.
2018-06-08 12:22:22 +08:00
import moment from 'moment';
2020-07-30 13:56:18 +08:00
import 'moment/locale/zh-cn';
2020-10-26 11:57:37 +08:00
import locale from 'antd/lib/locale/zh_CN';
2016-11-02 13:47:05 +08:00
2020-07-30 13:56:18 +08:00
< ConfigProvider locale = {locale} >
< DatePicker defaultValue = {moment('2015-01-01', ' YYYY-MM-DD ' ) } / >
< / ConfigProvider > ;
2016-06-19 11:17:09 +08:00
```
2016-10-28 10:32:09 +08:00
### Common API
2020-07-23 11:25:17 +08:00
The following APIs are shared by DatePicker, RangePicker.
2016-10-28 10:32:09 +08:00
2019-07-11 14:14:33 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
| allowClear | Whether to show clear button | boolean | true | |
2020-06-30 16:36:58 +08:00
| autoFocus | If get focus when component mounted | boolean | false | |
2020-10-21 10:33:43 +08:00
| bordered | Whether has border style | boolean | true | |
2020-06-30 16:36:58 +08:00
| className | The picker className | string | - | |
| dateRender | Custom rendering function for date cells | function(currentDate: moment, today: moment) => React.ReactNode | - | |
| disabled | Determine whether the DatePicker is disabled | boolean | false | |
| disabledDate | Specify the date that cannot be selected | (currentDate: moment) => boolean | - | |
| dropdownClassName | To customize the className of the popup calendar | string | - | |
| getPopupContainer | To set the container of the floating layer, while the default is to create a `div` element in `body` | function(trigger) | - | |
2020-10-21 10:33:43 +08:00
| inputReadOnly | Set the `readonly` attribute of the input tag (avoids virtual keyboard on touch devices) | boolean | false | |
2020-06-30 16:36:58 +08:00
| locale | Localization configuration | object | [default ](https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json ) | |
| mode | The picker panel mode( [Cannot select year or month anymore? ](/docs/react/faq#When-set-mode-to-DatePicker/RangePicker,-cannot-select-year-or-month-anymore? ) ) | `time` \| `date` \| `month` \| `year` \| `decade` | - | |
| open | The open state of picker | boolean | - | |
2020-07-08 09:58:53 +08:00
| panelRender | Customize panel render | (panelNode) => ReactNode | - | 4.5.0 |
2020-06-30 16:36:58 +08:00
| picker | Set picker type | `date` \| `week` \| `month` \| `quarter` \| `year` | `date` | `quarter` : 4.1.0 |
| placeholder | The placeholder of date input | string \| \[string,string] | - | |
| popupStyle | To customize the style of the popup calendar | CSSProperties | {} | |
2021-05-11 20:28:04 +08:00
| size | To determine the size of the input box, the height of `large` and `small` , are 40px and 24px respectively, while default size is 32px | `large` \| `middle` \| `small` | - | |
2020-06-30 16:36:58 +08:00
| style | To customize the style of the input box | CSSProperties | {} | |
2020-10-21 10:33:43 +08:00
| suffixIcon | The custom suffix icon | ReactNode | - | |
2020-06-30 16:36:58 +08:00
| onOpenChange | Callback function, can be executed whether the popup calendar is popped up or closed | function(open) | - | |
| onPanelChange | Callback when picker panel mode is changed | function(value, mode) | - | |
2016-10-28 10:32:09 +08:00
2017-12-01 19:28:41 +08:00
### Common Methods
2021-05-24 16:24:00 +08:00
| Name | Description | Version |
| ------- | ------------ | ------- |
| blur() | Remove focus | |
| focus() | Get focus | |
2017-12-01 19:28:41 +08:00
2016-10-28 10:32:09 +08:00
### DatePicker
2019-07-11 14:14:33 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
2020-06-30 16:36:58 +08:00
| defaultPickerValue | To set default picker date | [moment ](http://momentjs.com/ ) | - | |
2020-10-21 10:33:43 +08:00
| defaultValue | To set default date, if start time or end time is null or undefined, the date range will be an open interval | [moment ](http://momentjs.com/ ) | - | |
2020-06-30 16:36:58 +08:00
| disabledTime | To specify the time that cannot be selected | function(date) | - | |
2020-10-21 10:33:43 +08:00
| format | To set the date format, refer to [moment.js ](http://momentjs.com/ ). When an array is provided, all values are used for parsing and first value is used for formatting, support [Custom Format ](#components-date-picker-demo-format ) | string \| (value: moment) => string \| (string \| (value: moment) => string)\[] | `YYYY-MM-DD` | |
2020-06-30 16:36:58 +08:00
| renderExtraFooter | Render extra footer in panel | (mode) => React.ReactNode | - | |
2020-10-21 10:33:43 +08:00
| showNow | Whether to show 'Now' button on panel when `showTime` is set | boolean | - | 4.4.0 |
2020-06-30 16:36:58 +08:00
| showTime | To provide an additional time selection | object \| boolean | [TimePicker Options ](/components/time-picker/#API ) | |
| showTime.defaultValue | To set default time of selected date, [demo ](#components-date-picker-demo-disabled-date ) | [moment ](http://momentjs.com/ ) | moment() | |
| showToday | Whether to show `Today` button | boolean | true | |
| value | To set date | [moment ](http://momentjs.com/ ) | - | |
| onChange | Callback function, can be executed when the selected time is changing | function(date: moment, dateString: string) | - | |
| onOk | Callback when click ok button | function() | - | |
2019-11-20 14:53:43 +08:00
| onPanelChange | Callback function for panel changing | function(value, mode) | - | |
2016-06-19 11:17:09 +08:00
2020-07-23 11:25:17 +08:00
### DatePicker\[picker=year]
2019-12-11 23:32:19 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
2020-06-30 16:36:58 +08:00
| defaultPickerValue | To set default picker date | [moment ](http://momentjs.com/ ) | - | |
2020-10-21 10:33:43 +08:00
| defaultValue | To set default date | [moment ](http://momentjs.com/ ) | - | |
2020-06-30 16:36:58 +08:00
| format | To set the date format, refer to [moment.js ](http://momentjs.com/ ) | string | `YYYY` | |
| renderExtraFooter | Render extra footer in panel | () => React.ReactNode | - | |
| value | To set date | [moment ](http://momentjs.com/ ) | - | |
| onChange | Callback function, can be executed when the selected time is changing | function(date: moment, dateString: string) | - | |
2019-12-11 23:32:19 +08:00
2020-07-23 11:25:17 +08:00
### DatePicker\[picker=quarter]
2020-03-21 22:43:04 +08:00
Added in `4.1.0` .
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
2020-06-30 16:36:58 +08:00
| defaultPickerValue | To set default picker date | [moment ](http://momentjs.com/ ) | - | |
2020-10-21 10:33:43 +08:00
| defaultValue | To set default date | [moment ](http://momentjs.com/ ) | - | |
2020-06-30 16:36:58 +08:00
| format | To set the date format, refer to [moment.js ](http://momentjs.com/ ) | string | `YYYY-\QQ` | |
| renderExtraFooter | Render extra footer in panel | () => React.ReactNode | - | |
| value | To set date | [moment ](http://momentjs.com/ ) | - | |
| onChange | Callback function, can be executed when the selected time is changing | function(date: moment, dateString: string) | - | |
2020-03-21 22:43:04 +08:00
2020-07-23 11:25:17 +08:00
### DatePicker\[picker=month]
2016-06-19 11:17:09 +08:00
2019-07-11 14:14:33 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
2020-06-30 16:36:58 +08:00
| defaultPickerValue | To set default picker date | [moment ](http://momentjs.com/ ) | - | |
2020-10-21 10:33:43 +08:00
| defaultValue | To set default date | [moment ](http://momentjs.com/ ) | - | |
2020-06-30 16:36:58 +08:00
| format | To set the date format, refer to [moment.js ](http://momentjs.com/ ) | string | `YYYY-MM` | |
2020-04-05 22:18:14 +08:00
| monthCellRender | Custom month cell content render method | function(date, locale): ReactNode | - | |
2020-06-30 16:36:58 +08:00
| renderExtraFooter | Render extra footer in panel | () => React.ReactNode | - | |
| value | To set date | [moment ](http://momentjs.com/ ) | - | |
| onChange | Callback function, can be executed when the selected time is changing | function(date: moment, dateString: string) | - | |
2016-06-19 11:17:09 +08:00
2020-07-23 11:25:17 +08:00
### DatePicker\[picker=week]
2017-08-31 20:44:22 +08:00
2019-07-11 14:14:33 +08:00
| Property | Description | Type | Default | Version |
| --- | --- | --- | --- | --- |
2020-06-30 16:36:58 +08:00
| defaultPickerValue | To set default picker date | [moment ](http://momentjs.com/ ) | - | |
2020-10-21 10:33:43 +08:00
| defaultValue | To set default date | [moment ](http://momentjs.com/ ) | - | |
2020-06-30 16:36:58 +08:00
| format | To set the date format, refer to [moment.js ](http://momentjs.com/ ) | string | `YYYY-wo` | |
2020-10-21 10:33:43 +08:00
| renderExtraFooter | Render extra footer in panel | (mode) => React.ReactNode | - | |
2020-06-30 16:36:58 +08:00
| value | To set date | [moment ](http://momentjs.com/ ) | - | |
| onChange | Callback function, can be executed when the selected time is changing | function(date: moment, dateString: string) | - | |
2017-08-31 20:44:22 +08:00
2016-06-19 11:17:09 +08:00
### RangePicker
2019-02-28 16:11:10 +08:00
| Property | Description | Type | Default | Version |
2019-05-07 14:57:32 +08:00
| --- | --- | --- | --- | --- |
2019-12-11 23:32:19 +08:00
| allowEmpty | Allow start or end input leave empty | \[boolean, boolean] | \[false, false] | |
2020-06-30 16:36:58 +08:00
| dateRender | Customize date cell. `info` argument is added in 4.3.0 | function(currentDate: moment, today: moment, info: { range: `start` \| `end` }) => React.ReactNode | - | |
2020-10-21 10:33:43 +08:00
| defaultPickerValue | To set default picker date | \[[moment ](http://momentjs.com/ ), [moment ](http://momentjs.com/ )] | - | |
2020-06-30 16:36:58 +08:00
| defaultValue | To set default date | \[[moment ](http://momentjs.com/ ), [moment ](http://momentjs.com/ )] | - | |
| disabled | If disable start or end | \[boolean, boolean] | - | |
2020-08-27 21:15:52 +08:00
| disabledTime | To specify the time that cannot be selected | function(date: moment, partial: `start` \| `end` ) | - | |
2020-10-21 10:33:43 +08:00
| format | To set the date format, refer to [moment.js ](http://momentjs.com/ ). When an array is provided, all values are used for parsing and first value is used for formatting | string \| string\[] | `YYYY-MM-DD HH:mm:ss` | |
2020-06-30 16:36:58 +08:00
| ranges | The preseted ranges for quick selection | { \[range: string]: [moment ](http://momentjs.com/ )\[] } \| { \[range: string]: () => [moment ](http://momentjs.com/ )\[] } | - | |
| renderExtraFooter | Render extra footer in panel | () => React.ReactNode | - | |
2021-05-27 15:31:02 +08:00
| separator | Set separator between inputs | React.ReactNode | `<SwapRightOutlined />` | |
2020-06-30 16:36:58 +08:00
| showTime | To provide an additional time selection | object \| boolean | [TimePicker Options ](/components/time-picker/#API ) | |
| showTime.defaultValue | To set default time of selected date, [demo ](#components-date-picker-demo-disabled-date ) | [moment ](http://momentjs.com/ )\[] | \[moment(), moment()] | |
| value | To set date | \[[moment ](http://momentjs.com/ ), [moment ](http://momentjs.com/ )] | - | |
2020-07-30 13:56:18 +08:00
| onCalendarChange | Callback function, can be executed when the start time or the end time of the range is changing. `info` argument is added in 4.4.0 | function(dates: \[moment, moment], dateStrings: \[string, string], info: { range:`start`\|`end` }) | - | |
2020-06-30 16:36:58 +08:00
| onChange | Callback function, can be executed when the selected time is changing | function(dates: \[moment, moment], dateStrings: \[string, string]) | - | |
2016-06-19 11:17:09 +08:00
2019-06-05 20:31:15 +08:00
## FAQ
2020-07-30 13:56:18 +08:00
### When set mode to DatePicker/RangePicker, cannot select year or month anymore?
2020-01-02 16:05:59 +08:00
2020-07-30 13:56:18 +08:00
Please refer [FAQ ](/docs/react/faq#When-set-mode-to-DatePicker/RangePicker,-cannot-select-year-or-month-anymore? )
2020-05-31 01:01:53 +08:00
2020-07-30 13:56:18 +08:00
### How to use DatePicker with customize date library like dayjs?
2020-05-31 01:01:53 +08:00
2020-07-30 13:56:18 +08:00
Please refer [replace moment ](/docs/react/replace-moment#DatePicker )
2020-05-31 01:01:53 +08:00
2020-07-30 13:56:18 +08:00
### Why config moment.locale globally not work?
DatePicker default set `locale` as `en` in v4. You can config DatePicker `locale` prop or [ConfigProvider `locale` ](/components/config-provider ) prop instead.
### How to modify start day of week?
2020-10-21 10:33:43 +08:00
Please use correct [language ](/docs/react/i18n ) ([#5605](https://github.com/ant-design/ant-design/issues/5605)), or update moment `locale` config: < https: // codesandbox . io / s / moment-day-of-week-6dby5 >
2020-07-30 13:56:18 +08:00
2020-10-21 11:38:18 +08:00
### Why origin panel don't switch when using `panelRender`?
When you change the layout of nodes by `panelRender` , React will unmount and re-mount it which reset the component state. You should keep the layout stable. Please ref [#27263 ](https://github.com/ant-design/ant-design/issues/27263 ) for more info.
2020-07-30 13:56:18 +08:00
```js
moment.locale('en', {
week: {
dow: 1,
},
});
```