Rc-Datetime-Picker is a react component for datetime picker by Moment.js.
- React
- Moment.js
- Modern browsers (IE>=9 is required)
$ npm install rc-datetime-picker
Besides npm package, UMD module is placed under dist/ directory:
- dist/rc-datetime-picker.js
- dist/rc-datetime-picker.min.js
See the demo page.
| Name | Type | Default | Description |
|---|---|---|---|
| moment | moment | Set the selected date. | |
| onChange | Function(datetime: moment) | `onChange` will be triggered while datetime changing. | |
| className | String | Additional css class of root dom node. | |
| isOpen | Boolean | true | Whether to show the picker. |
| showCalendarPicker | Boolean | true | Whether to show the calendar picker. |
| showTimePicker | Boolean | true | Whether to show the time picker. |
| splitPanel | Boolean | false | Enable `split-panel` mode. |
| shortcuts | Object:{name: value} | Add shortcuts on the top `shortcuts-bar` for selecting a date. | |
| maxDate | moment | Max Date limit. | |
| minDate | moment | Min Date limit. | |
| weeks | Array | ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'] | Text for weekdays. |
| months | Array | [Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] | Text for months. |
| dayFormat | String | 'MMMM, YYYY' | Formatting current date of the day panel. |
| Name | Type | Default | Description |
|---|---|---|---|
| moment | moment | Set the selected date. | |
| onChange | Function(datetime: moment) | `onChange` will be triggered while datetime changing. | |
| className | String | Additional css class of root dom node. | |
| showCalendarPicker | Boolean | true | Whether to show the calendar picker. |
| showTimePicker | Boolean | true | Whether to show the time picker. |
| splitPanel | Boolean | false | Enable `split-panel` mode. |
| shortcuts | Object:{name: value} | Add shortcuts on the top `shortcuts-bar` for selecting a date. | |
| maxDate | moment | Max Date limit. | |
| minDate | moment | Min Date limit. | |
| weeks | Array | ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'] | Text for weekdays. |
| months | Array | [Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] | Text for months. |
| dayFormat | String | 'MMMM, YYYY' | Formatting current date of the day panel. |
| appendToBody | Boolean | false | Whether to render the picker to `body`. |
| closeOnSelectDay | Boolean | false | Whether to close the picker when selecting a date on day panel. |
| disabled | Boolean | false | Disabled triggering. |