2021-09-17 00:18:50 +08:00
# DateTimePicker
2020-08-13 15:18:26 +08:00
Select date and time in one picker.
:::tip
2021-09-17 00:18:50 +08:00
2020-12-18 11:28:38 +08:00
DateTimePicker is derived from DatePicker and TimePicker. For a more detailed explanation on attributes, you can refer to DatePicker and TimePicker.
2021-09-17 00:18:50 +08:00
2020-08-13 15:18:26 +08:00
:::
2021-09-17 00:18:50 +08:00
< style lang = "scss" scoped >
2020-08-13 15:18:26 +08:00
2021-09-17 00:18:50 +08:00
.example-showcase {
padding: 0;
display: flex;
}
2020-08-13 15:18:26 +08:00
2021-09-17 00:18:50 +08:00
.example-showcase .block {
padding: 30px 0;
text-align: center;
border-right: solid 1px var(--el-border-color-base);
flex: 1;
& :last-child {
border-right: none;
2021-09-04 19:29:28 +08:00
}
2021-09-17 00:18:50 +08:00
}
2021-06-08 13:28:18 +08:00
2021-09-17 00:18:50 +08:00
.example-showcase .demonstration {
display: block;
color: var(--el-text-color-secondary);
font-size: 14px;
margin-bottom: 20px;
}
2021-06-08 13:28:18 +08:00
2021-09-17 00:18:50 +08:00
< / style >
2021-09-04 19:29:28 +08:00
2021-09-17 00:18:50 +08:00
## Date and time
2020-08-13 15:18:26 +08:00
2021-09-17 00:18:50 +08:00
:::demo You can select date and time in one picker at the same time by setting `type` to `datetime` . The way to use shortcuts is the same as Date Picker.
2020-08-13 15:18:26 +08:00
2021-09-17 00:18:50 +08:00
datetime-picker/date-and-time
2020-08-13 15:18:26 +08:00
2021-09-17 00:18:50 +08:00
:::
2021-06-08 13:28:18 +08:00
2021-09-17 00:18:50 +08:00
## Date and time range
2021-06-08 13:28:18 +08:00
2021-09-17 00:18:50 +08:00
:::demo You can select date and time range by setting `type` to `datetimerange` .
2021-06-08 13:28:18 +08:00
2021-09-17 00:18:50 +08:00
datetime-picker/date-and-time-range
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
2021-09-04 19:29:28 +08:00
### Default time value for start date and end date
2020-08-13 15:18:26 +08:00
2020-12-18 13:45:52 +08:00
:::demo When picking date range on the date panel with type `datetimerange` , `00:00:00` will be used as the default time value for start and end date. We can control it with the `default-time` attribute. `default-time` accepts an array of up to two Date objects. The first item controls time value of the start date and the second item controls time value of the end date.
2021-09-04 19:29:28 +08:00
2021-09-17 00:18:50 +08:00
datetime-picker/default-time
2021-09-04 19:29:28 +08:00
2020-08-13 15:18:26 +08:00
:::
2021-09-17 00:18:50 +08:00
## Attributes
2021-09-04 19:29:28 +08:00
| Attribute | Description | Type | Accepted Values | Default |
| --------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- |
| model-value / v-model | binding value | date(DateTimePicker) / array(DateTimeRangePicker) | — | — |
| readonly | whether DatePicker is read only | boolean | — | false |
| disabled | whether DatePicker is disabled | boolean | — | false |
| editable | whether the input is editable | boolean | — | true |
| clearable | whether to show clear button | boolean | — | true |
| size | size of Input | string | large/medium/small/mini | large |
| placeholder | placeholder in non-range mode | string | — | — |
| start-placeholder | placeholder for the start date in range mode | string | — | — |
| end-placeholder | placeholder for the end date in range mode | string | — | — |
| time-arrow-control | whether to pick time using arrow buttons | boolean | — | false |
| type | type of the picker | string | year/month/date/datetime/ week/datetimerange/daterange | date |
2021-09-17 00:18:50 +08:00
| format | format of the displayed value in the input box | string | see [date formats ](/en-US/component/date-picker#date-formats ) | YYYY-MM-DD HH:mm:ss |
2021-09-04 19:29:28 +08:00
| popper-class | custom class name for DateTimePicker's dropdown | string | — | — |
| range-separator | range separator | string | - | '-' |
| default-value | optional, default date of the calendar | Date | anything accepted by `new Date()` | — |
| default-time | the default time value after picking a date | non-range: Date / range: Date[] | non-range: a Date object, range: array of two Date objects, and the first item is for the start date and second for the end date. Time `00:00:00` will be used if not specified | — |
| name | same as `name` in native input | string | — | — |
| unlink-panels | unllink two date-panels in range-picker | boolean | — | false |
| prefix-icon | Custom prefix icon class | string | — | el-icon-date |
| clear-icon | Custom clear icon class | string | — | el-icon-circle-close |
| shortcuts | an object array to set shortcut options | object[{ text: string, value: date / function }] | — | — |
| disabledDate | a function determining if a date is disabled with that date as its parameter. Should return a Boolean | function | — | — |
| cellClassName | set custom className | Function(Date) | — | — |
2020-12-18 11:28:38 +08:00
2021-09-17 00:18:50 +08:00
## Events
2021-09-04 19:29:28 +08:00
| Event Name | Description | Parameters |
| --------------- | ----------------------------------------------------------------------------- | ------------------------- |
| change | triggers when user confirms the value | component's binding value |
| blur | triggers when Input blurs | component instance |
| focus | triggers when Input focuses | component instance |
| calendar-change | triggers when the calendar selected date is changed. Only for `datetimerange` | [Date, Date] |
2020-08-13 15:18:26 +08:00
2021-09-17 00:18:50 +08:00
## Methods
2021-09-04 19:29:28 +08:00
| Method | Description | Parameters |
| ------ | ------------------------- | ---------- |
| focus | focus the Input component | — |