9.1 KiB
API
Datepicker
Static Properties
Datepicker.locales
- Type:
Object
Installed locales in [languageCode]: localeObject
format. en
:English (US) is pre-installed.
See i18n for the details.
Static Methods
Datepicker.formatDate()
Format a Date object or a time value using given format and language
Datepicker.formatDate( date , format [, lang ] )
- Arguments:
date
: {Date
|Number
} - Date or time value to formatformat
: {String
|Object
} - Format string or object that containstoDisplay()
custom formatter
See Options ≻ format- [
lang
] : {String
} - Language code for the locale to use
– Default:'en'
- Return:
- {
String
} - Formatted date
- {
Datepicker.parseDate()
Parse date string (or Date/time value) using given format and language
Datepicker.parseDate( dateStr , format [, lang ] )
- Arguments:
dateStr
: {String
|Date
|Number
} - Date string, Date object or time value to parseformat
: {String
|Object
} - Format string or object that containstoValue()
custom parser
See Options ≻ format- [
lang
] : {String
} - Language code for the locale to use
– Default:'en'
- Return:
- {
Number
} - Time value of parsed date
- {
Instance Properties
datepicker.active
- Type:
Boolean
Whether the picker element is shown
(Read-only)
datepicker.pickerElement
- Type:
HTMLDivElement
DOM object of picker element
(Read-only)
datepicker.rangepicker
- Type:
DateRangePicker
DateRangePicker instance that the datepicker belongs to
Only avalable when the datepicker is a part of date range picker
(Read-only)
Instance Methods
datepicker.destroy()
Destroy the Datepicker instance
datepicker.destroy()
- Return:
- {
Detepicker
} - The instance destroyed
- {
datepicker.getDate()
Get selected date(s)
The method returns a Date object of selected date by default, and returns an array of selected dates in multidate mode. If format string is passed, it returns date string(s) formatted in given format.
datepicker.getDate( [ format ] )
- Arguments:
- [
format
] : {String
} - Format string to stringify the date(s)
- [
- Return:
- {
Date
|String
} - Selected date (orundefined
if none is selected) - {
Date[]
|String[]
} - Array of selected dates (or empty array if none is selected)
- {
datepicker.hide()
Hide the picker element
Not available on inline picker
datepicker.hide()
datepicker.refresh()
Refresh the picker element and the associated input field
datepicker.refresh( [ target ], [ forceRender ] )
- Arguments:
- [
target
] : {String
} - Target item when refreshing one item only.'picker'
or'input'
- [
forceRender
] : {Boolean
} - Whether to re-render the picker element regardless of its state instead of optimized refresh
– Default:'false'
- [
datepicker.setDate()
Set selected date(s)
In multidate mode, you can pass multiple dates as a series of arguments or an array. (Since each date is parsed individually, the type of the dates doesn't have to be the same.)
The given dates are used to toggle the select status of each date. The number of selected dates is kept from exceeding the length set to maxNumberOfDates
. See Multidate Mode for more details.
With clear: true
option, the method can be used to clear the selection and to replace the selection instead of toggling in multidate mode. If the option is passed with no date arguments or an empty dates array, it works as "clear" (clear the selection then set nothing), and if the option is passed with new dates to select, it works as "replace" (clear the selection then set the given dates)
When render: false
option is used, the method omits re-rendering the picker element. In this case, you need to call refresh()
method later in order for the picker element to reflect the changes. The input field is refreshed always regardless of this option.
When invalid (unparsable, repeated, disabled or out-of-range) dates are passed, the method ignores them and applies only valid ones. In the case that all the given dates are invalid, which is distinguished from passing no dates, the method considers it as an error and leaves the selection untouched.
datepicker.setDate( date1 [, date2 [, ... dateN ]][, options ] )
datepicker.setDate( dates [, options ] )
datepicker.setDate( [ options ] )
- Arguments:
- [
...dates
] : {...(String
|Date
|Number
)|Array
} - Date strings, Date objects, time values or mix of those for new selection - [
options
] : {Object
} - Function options:clear
: {Boolean
} - Whether to clear the existing selection
– Default:false
render
: {Boolean
} - Whether to re-render the picker element
– Default:true
autohide
: {Boolean
} - Whether to hide the picker element after re-render
Ignored when used withrender: false
– Default: the value ofautohide
config option
- [
datepicker.setOptions()
Set new values to the config options
datepicker.setOptions( options )
- Arguments:
options
: {Object
} - Config options to update
datepicker.show()
Show the picker element
datepicker.show()
datepicker.update()
Update the selected date(s) with input field's value
Not available on inline picker
The input field will be refreshed with properly formatted date string.
datepicker.update( [ options ] )
- Arguments:
- [
options
] : {Object
} - Function options:autohide
: {Boolean
} - Whether to hide the picker element after update
– Default:false
- [
Events
All Datepicker-event objects are CustomEvent
instances and dispatched to the associated <input>
element (for inline picker, the block element).
They include the following extra data in the detail
property.
date
: {Date
} - Selected date(s) (see getDate())viewDate
: {Date
} - Focused dateviewId
: {Number
} - ID of the current viewdatepicker
: {Datepicker
} - Datepicker instance
changeDate
Fired when the selected dates are changed.
changeMonth
Fired when the focused date is changed to a different month's date.
changeView
Fired when the current view is changed.
changeYear
Fired when the focused date is changed to a different year's date.
hide
Fired when the date picker becomes hidden.
show
Fired when the date picker becomes visible.
DateRangePicker
Instance Properties
rangepicker.datepickers
- Type:
Array
Array of associated Datepicker instances
(Read-only)
Instance Methods
rangepicker.destroy()
Destroy the DateRangePicker instance
rangepicker.destroy()
- Return:
- {
DateRangePicker
} - The instance destroyed
- {
rangepicker.getDates()
Get the start and end dates of the date-range
The method returns Date objects by default. If format string is passed, it returns date strings formatted in given format.
The result array always contains 2 items (start date/end date) and undefined
is used for unselected side. (e.g. If none is selected, the result will be [undefined, undefined]
. If only the end date is set when allowOneSidedRange
config option is true
, [undefined, endDate]
will be returned.)
rangepicker.getDates( [ format ] )
- Arguments:
- [
format
] : {String
} - Format string to stringify the dates
- [
- Return:
- {
Date[]
|String[]
} - Start and end dates
- {
rangepicker.setDates()
Set the start and end dates of the date range
The method calls datepicker.setDate()
internally using each of the arguments in start→end order.
When a clear: true
option object is passed instead of a date, the method clears the date.
If an invalid date, the same date as the current one or an option object without clear: true
is passed, the method considers that argument as an "ineffective" argument because calling datepicker.setDate()
with those values makes no changes to the date selection.
When the allowOneSidedRange
config option is false
, passing {clear: true}
to clear the range works only when it is done to the last effective argument (in other words, passed to rangeEnd
or to rangeStart
along with ineffective rangeEnd
). This is because when the date range is changed, it gets normalized based on the last change at the end of the changing process.
rangepicker.setDates( rangeStart , rangeEnd )
- Arguments:
rangeStart
: {Date
|Number
|String)
|Object
} - Start date of the range or{clear: true}
to clear the daterangeEnd
: {Date
|Number
|String)
|Object
} - End date of the range or{clear: true}
to clear the date
rangepicker.setOptions()
Set new values to the config options
rangepicker.setOptions( options )
- Arguments:
options
: {Object
} - Config options to update