Date Picker
wcm/dialogs/components/datepicker
Description
The Date Picker dialog field allows the user to pick a date, time or datetime.
Properties
-
name -
string
(required)
Form field name -
label -
string
(required)
Display label value -
required -
string
Indicates if field value is mandatory -
type -
string
The type of date picker. It can be one ofdate
,time
ordatetime
. Default value isdate
. -
displayDateFormat -
string
Date format that will be used to format date on the user interface. This does not affect the way the date is saved. Format should be accepted by date-fn’s format function. -
displayTimeFormat -
string
Time format that will be used to format time on the user interface. This does not affect the way the time is saved. Format should be accepted by date-fn’s format function. -
minDate -
string
Lower boundary of the selected date or datetime. Format should be:yyyy-MM-dd
. E.g.: 2022-02-02 -
maxDate -
string
Upper boundary of the selected date or datetime. Format should be:yyyy-MM-dd
. E.g.: 2022-02-02 -
after -
string
Comma separated values of other datepickers. These datepickers' values should be lower than the selected date. (This validation should be used in pair withbefore
on the reference field.) -
before -
string
Comma separated values of other datepickers. These datepickers' values should be higher the selected date. (This validation should be used in pair withafter
on the reference field.)