DateTimePickerProps
Represents the props of the Kendo UI for Vue DateTimePicker component.
ariaDescribedBy?
string
Identifies the element(s) which will describe the component, similar to HTML aria-describedby attribute. For example these elements could contain error or hint message.
ariaLabelledBy?
string
Identifies the element(s) which will label the component.
blur?
(event: any) => void
Fires each time any of the DateTimePicker elements gets blurred.
calendar?
any
Enables the customization or the override of the default Calendar which is rendered by the DateTimePicker
cancelButton?
boolean
Determines whether to display the Cancel button in the popup.
dateInput?
any
Enables the customization or the override of the default DateInput which is rendered by the DateTimePicker
defaultShow?
boolean
Sets if the calendar popup is opened upon initial render.
defaultValue?
Date
Sets the default value of the DateTimePicker.
disabled?
boolean
Determines whether the DateTimePicker is disabled (see example).
focus?
(event: any) => void
Fires each time the user focuses any of the DateTimePicker elements.
focusedDate?
Date
Specifies the initial focusedDate of the Calendar inside the DateTimePicker (see example).
format?
string | DateFormatOptions
Specifies the date format that is used to display the input value (see example).
formatPlaceholder?
Defines the descriptions of the format sections in the input field (more information and examples).
id?
string
Specifies the id
of the DateTimePicker.
max?
Date
Specifies the greatest valid date (see example).
maxTime?
Date
min?
Date
Specifies the smallest valid date (see example).
minTime?
Date
name?
string
Specifies the name
property of the input
DOM element.
onChange?
(event: DateTimePickerChangeEvent) => void
Fires each time the user selects a new value
popup?
any
Enables the customization or the override of the default Popup which is rendered by the DateTimePicker
popupSettings?
object
Configures the popup options of the DateTimePicker.
The available options are:
animate: Boolean
—Controls the popup animation. By default, the open and close animations are enabled.appendTo:
— Defines the container to which the Popup will be appended. Defaults tobody
.popupClass: String
—Specifies a list of CSS classes that are used to style the popup.
required?
boolean
Specifies if null
is a valid value for the component.
show?
boolean
Specifies if the popup will be displayed (see example).
steps?
Configures the incremental steps of the DateTimePicker.
If the incremental step is greater than
1
, the Now button will be hidden.
tabIndex?
number
Sets the tabIndex
property of the DateTimePicker.
title?
string
Sets the title of the input
element of the DateTimePicker.
valid?
boolean
Overrides the validity state of the component.
If valid
is set, the required
property will be ignored.
validate?
boolean
Specifies the validate of the DateTimePicker.
validationMessage?
string
Controls the form error message of the component. If set to an empty string, no error will be thrown.
validityStyles?
boolean
If set to false
, no visual representation of the invalid state of the component will be applied.
value?
Date | null
Specifies the value of the DateTimePicker (see example).
The
value
has to be a valid JavaScriptDate
instance.
weekNumber?
boolean
Determines whether to display a week number column of the Calendar inside the DateTimePicker (see example).
width?
number | string
Specifies the width of the DateTimePicker.