2016-07-26 11:03:44 +08:00
|
|
|
---
|
|
|
|
category: Components
|
2016-11-09 14:43:32 +08:00
|
|
|
type: Data Entry
|
2016-07-26 11:03:44 +08:00
|
|
|
title: TimePicker
|
2020-06-05 13:50:09 +08:00
|
|
|
cover: https://gw.alipayobjects.com/zos/alicdn/h04Zsl98I/TimePicker.svg
|
2016-07-26 11:03:44 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
To select/input a time.
|
|
|
|
|
2016-09-10 13:43:30 +08:00
|
|
|
## When To Use
|
2017-10-25 10:25:44 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
---
|
2016-07-26 11:03:44 +08:00
|
|
|
|
|
|
|
By clicking the input box, you can select a time from a popup panel.
|
|
|
|
|
|
|
|
## API
|
2017-10-25 10:25:44 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
---
|
2016-07-26 11:03:44 +08:00
|
|
|
|
2016-09-09 13:55:21 +08:00
|
|
|
```jsx
|
|
|
|
import moment from 'moment';
|
2020-04-28 14:09:54 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
<TimePicker defaultValue={moment('13:30:56', 'HH:mm:ss')} />;
|
2016-07-26 11:03:44 +08:00
|
|
|
```
|
|
|
|
|
2019-07-11 14:14:33 +08:00
|
|
|
| Property | Description | Type | Default | Version |
|
|
|
|
| --- | --- | --- | --- | --- |
|
2020-07-01 20:18:48 +08:00
|
|
|
| allowClear | Whether allow clearing text | boolean | true | |
|
|
|
|
| autoFocus | If get focus when component mounted | boolean | false | |
|
|
|
|
| bordered | Whether has border style | boolean | true | |
|
|
|
|
| className | The className of picker | string | - | |
|
|
|
|
| clearText | The clear tooltip of icon | string | clear | |
|
|
|
|
| defaultValue | To set default time | [moment](http://momentjs.com/) | - | |
|
|
|
|
| disabled | Determine whether the TimePicker is disabled | boolean | false | |
|
|
|
|
| disabledHours | To specify the hours that cannot be selected | function() | - | |
|
|
|
|
| disabledMinutes | To specify the minutes that cannot be selected | function(selectedHour) | - | |
|
|
|
|
| disabledSeconds | To specify the seconds that cannot be selected | function(selectedHour, selectedMinute) | - | |
|
|
|
|
| format | To set the time format | string | `HH:mm:ss` | |
|
|
|
|
| getPopupContainer | To set the container of the floating layer, while the default is to create a div element in body | function(trigger) | - | |
|
|
|
|
| hideDisabledOptions | Whether hide the options that can not be selected | boolean | false | |
|
|
|
|
| hourStep | Interval between hours in picker | number | 1 | |
|
2019-11-20 14:55:34 +08:00
|
|
|
| inputReadOnly | Set the `readonly` attribute of the input tag (avoids virtual keyboard on touch devices) | boolean | false | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| minuteStep | Interval between minutes in picker | number | 1 | |
|
|
|
|
| open | Whether to popup panel | boolean | false | |
|
|
|
|
| placeholder | Display when there's no value | string \| \[string, string] | `Select a time` | |
|
|
|
|
| popupClassName | The className of panel | string | - | |
|
|
|
|
| popupStyle | The style of panel | CSSProperties | - | |
|
|
|
|
| secondStep | Interval between seconds in picker | number | 1 | |
|
2019-11-20 14:55:34 +08:00
|
|
|
| suffixIcon | The custom suffix icon | ReactNode | - | |
|
|
|
|
| clearIcon | The custom clear icon | ReactNode | - | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| use12Hours | Display as 12 hours format, with default format `h:mm:ss a` | boolean | false | |
|
|
|
|
| renderExtraFooter | Called from time picker panel to render some addon to its bottom | () => ReactNode | - | |
|
|
|
|
| value | To set time | [moment](http://momentjs.com/) | - | |
|
|
|
|
| onChange | A callback function, can be executed when the selected time is changing | function(time: moment, timeString: string): void | - | |
|
|
|
|
| onOpenChange | A callback function which will be called while panel opening/closing | (open: boolean) => void | - | |
|
2020-09-14 18:26:22 +08:00
|
|
|
| onSelect | A callback function, executes when a value is selected | function(time: moment): void | - | |
|
2020-07-01 20:18:48 +08:00
|
|
|
| showNow | Whether to show `Now` button on panel | boolean | - | 4.4.0 |
|
2016-07-26 11:03:44 +08:00
|
|
|
|
2017-12-01 19:28:41 +08:00
|
|
|
## Methods
|
|
|
|
|
2019-07-11 14:14:33 +08:00
|
|
|
| Name | Description | Version |
|
|
|
|
| ------- | ------------ | ------- |
|
2020-07-01 20:18:48 +08:00
|
|
|
| blur() | Remove focus | |
|
|
|
|
| focus() | Get focus | |
|
2017-12-01 19:28:41 +08:00
|
|
|
|
2020-03-06 20:19:24 +08:00
|
|
|
### RangePicker
|
|
|
|
|
|
|
|
Same props from [RangePicker](/components/date-picker/#RangePicker) of DatePicker. And includes additional props:
|
|
|
|
|
|
|
|
| Property | Description | Type | Default | Version |
|
|
|
|
| -------- | ------------------------ | ------- | ------- | ------- |
|
|
|
|
| order | Order start and end time | boolean | true | 4.1.0 |
|
|
|
|
|
2020-05-10 22:11:09 +08:00
|
|
|
<style>
|
|
|
|
.code-box-demo .ant-picker { margin: 0 8px 12px 0; }
|
|
|
|
.ant-row-rtl .code-box-demo .ant-picker { margin: 0 0 12px 8px; }
|
|
|
|
</style>
|
2020-01-02 16:05:59 +08:00
|
|
|
|
|
|
|
## FAQ
|
|
|
|
|
2020-01-08 11:29:37 +08:00
|
|
|
- [How to use TimePicker with customize date library like dayjs](/docs/react/replace-moment#TimePicker)
|