Functions
data
attribute e.g. $('#datetimepicker').data("DateTimePicker").FUNCTION()
destroy()
Destroys the widget and removes all attached event listeners
toggle()
Shows or hides the widget
Emits
-
dp.hide
- if the widget is hidden after the toggle call -
dp.show
- if the widget is show after the toggle call -
dp.change
- if the widget is opened for the first time and the input element is empty andoptions.useCurrent != false
show()
Shows the widget
Emits
-
dp.show
- if the widget was hidden before that call -
dp.change
- if the widget is opened for the first time and the useCurrent is set to true or to a granularity value and the input element the component is attached to has an empty value
hide()
Hides the widget
Emits
dp.hide
- if the widget was visible before that call
disable()
Disables the input element, the component is attached to, by adding a disabled="true"
attribute to it. If the widget was visible before that call it is hidden.
Emits
dp.hide
- if the widget was visible before that call
enable()
Enables the input element, the component is attached to, by removing disabled
attribute from it.
date
date()
Returns the component's model current date, a moment
object or null
if not set.
date([newDate])
Takes string, Date, moment, null
parameter and sets the components model current moment to it. Passing a null
value unsets the components model current moment. Parsing of the newDate parameter is made using moment library with the options.format
and options.useStrict
components configuration.
Throws
TypeError
- in case thenewDate
cannot be parsed
Emits
dp.change
- In casenewDate
is different from current moment
en/disabledDates
disabledDates()
Returns an array with the currently set disabled dates on the component.
disabledDates(dates)
Takes an [
string
or Date
or moment
]
of values and disallows the user to select those days. Setting this takes precedence over options.minDate
, options.maxDate
configuration. Also calling this function removes the configuration of options.enabledDates if such exist.
Note: These values are matched with Day
granularity.
enabledDates()
Returns an array with the currently set enabled dates on the component.
enabledDates(dates)
Takes an [
string
or Date
or moment
]
of values and allows the user to select only from those days. Setting this takes precedence over options.minDate
, options.maxDate
configuration. Also calling this function removes the configuration of options.disabledDates if such exist.
Note: These values are matched with Day
granularity.
defaultDate
defaultDate()
Returns a moment
with the options.defaultDate
option configuration or false
if not set
defaultDate(defaultDate)
Takes a string, Date, moment, boolean:false
. Will set the picker's inital date. If a boolean:false
value is passed the options.defaultDate
parameter is cleared.
-
TypeError
- if the provided date pass validation, includingdisabledDates
,enabledDates
,minDate
,maxDate
, anddaysOfWeekDisabled
-
TypeError
- if the provided date cannot be parsed by momentjs
useCurrent
useCurrent()
Returns a boolean
or string
with the options.useCurrent
option configuration
useCurrent(boolean or string)
Takes a boolean
or string
. If a boolean
true is passed and the components model moment is not set (either through setDate
or through a valid value on the input element the component is attached to) then the first time the user opens the datetimepicker widget the value is initialized to the current moment of the action. If a false boolean
is passed then no initialization happens on the input element. You can select the granularity on the initialized moment by passing one of the following strings ('year', 'month', 'day', 'hour', 'minute'
) in the variable.
If for example you pass 'day'
to the setUseCurrent
function and the input field is empty the first time the user opens the datetimepicker widget the input text will be initialized to the current datetime with day granularity (ie if currentTime = 2014-08-10 13:32:33
the input value will be initialized to 2014-08-10 00:00:00
)
Note: If the options.defaultDate
is set or the input element the component is attached to has already a value that takes precedence and the functionality of useCurrent
is not triggered!
min/maxDate
minDate()
Returns the currently set moment of the options.minDate
or false
if not set
minDate(minDate)
Takes a minDate string, Date, moment, boolean:false
parameter and disallows the user to select a moment that is before that moment. If a boolean:false
value is passed the options.minDate
parameter is cleared and there is no restriction to the miminum moment the user can select.
Note: If the minDate parameter is after the currently selected moment the currently selected moment changes to minDate parameter
Throws
-
TypeError
- if minDate parameter cannot be parsed using theoptions.format
andoptions.useStrict
configuration settings -
TypeError
- if minDate parameter is afteroptions.maxDate
Emits
-
dp.change
- if the new minDate is after currently selected moment (waiting for #472 to close in order to finalize this part) -
dp.error
- if the new minDate is after currently selected moment (waiting for #472 to close in order to finalize this part)
maxDate()
Returns the currently set moment of the options.maxDate
or false
if not set
maxDate(maxDate)
Takes a maxDate string, Date, moment, boolean:false
parameter and disallows the user to select a moment that is after that moment. If a boolean:false
value is passed options.maxDate
is cleared and there is no restriction to the maximum moment the user can select.
Note: If maxDate is before the currently selected moment the currently selected moment changes to maxDate
Throws
-
TypeError
- if maxDate parameter cannot be parsed using theoptions.format
andoptions.useStrict
configuration settings -
TypeError
- if maxDate parameter is beforeoptions.minDate
Emits
-
dp.change
- if the new maxDate is after currently selected moment (waiting for #472 to close in order to finalize this part) -
dp.error
- if the new maxDate is after currently selected moment (waiting for #472 to close in order to finalize this part)
daysOfWeekDisabled
daysOfWeekDisabled()
Returns an array with the options.daysOfWeekDisabled
configuration setting of the component.
daysOfWeekDisabled(daysOfWeek)
Takes an [
Number
:0
to 6
]
and disallow the user to select weekdays that exist in this array. This has lower priority over the options.minDate
, options.maxDate
, options.disabledDates
and options.enabledDates
configuration settings.
Emits
-
dp.change
- if the currently selected moment falls in the values passed on the daysOfWeek parameter. (waiting for #472 to close in order to finalize this part) -
dp.error
- if the currently selected moment falls in the values passed on the daysOfWeek parameter. (waiting for #472 to close in order to finalize this part)
options
options()
Returns the components current options object. Note that the changing the values of the returned object does not change the components actual configuration. Use options(options)
to set the components options massively or the other methods for setting config options individually.
options([options])
Takes an object variable with option key:value properties and configures the component. Use this to update multiple options on the component.
format
format()
Returns the component's options.format
string
format(format)
Takes a moment.js format string
and sets the components options.format
. This is used for displaying and also for parsing input strings either from the input element the component is attached to or the date()
function.
The parameter can also be a boolean:false
in which case the format is set to the locale's L LT
.
Note: this is also used to determine if the TimePicker sub component will display the hours in 12 or 24 format. (if 'a' or 'h' exists in the passed string
then a 12 hour mode is set)
extraFormats
extraFormats()
Returns a boolean
or array with the options.extraFormats
option configuration
extraFormats(formats)
Takes an array of valid input moment format options. See PR #666
locale
locale()
Returns the currently set locale of the options.locale
locale(newLocale)
Takes a string
of any valid moment locale e.g. de
for German.
Throws
TypeError
- if the locale is not loaded via a separate script ormoment-with-locales
stepping
stepping()
Returns a number
with the options.stepping
option configuration
stepping(number)
Takes a number
. This be the amount the up/down arrows move the minute value with a time picker.
sideBySide and collapse
sideBySide()
Returns a boolean
of the options.sideBySide
.
sideBySide(sideBySide)
Takes a boolean
. If sideBySide
is true
and the time picker is used, both components will display side by side instead of collapsing.
collapse()
Returns a boolean
with the options.collapse
option configuration
collapse(collapse)
Takes a boolean
. If set to false
the picker will display similar to sideBySide
except vertical.
icons
icons()
Returns an Ojbect
of options.icons
icons(icons)
Takes an Ojbect
of strings
.
Throws
TypeError
- if icons parameter is not anOjbect
useStrict
useStrict()
Returns a boolean
of the options.useStrict
useStrict(useStrict)
Takes a boolean
. If useStrict
is true
, momentjs parsing rules will be stricter when determining if a date is valid or not.
widgetPositioning
widgetPositioning()
Returns the currently set options.widgetPositioning
object containing two keys horizontal
and vertical
widgetPositioning(positioningObject)
Takes an object parameter that can contain two keys vertical
and horizontal
each having a value of 'auto', 'top', 'bottom'
for vertical
and 'auto', 'left', 'right'
for horizontal
which defines where the dropdown with the widget will appear relative to the input element the component is attached to.
'auto'
is the default value for both horizontal
and vertical
keys and it tries to automatically place the dropdown in a position that is visible to the user. Usually you should not override those options unless you have a special need in your layout.
viewMode
viewMode()
Returns a string
of the options.viewMode
.
viewMode(newViewMode)
Takes a string
. Valid values are 'days'
, 'months'
, 'years'
and 'decades'
Throws
TypeError
- ifnewViewMode
parameter is not an astring
or ifnewViewMode
is not a valid value
calendarWeeks
calendarWeeks()
Returns a boolean
with the current options.calendarWeeks
option configuration
calendarWeeks(boolean)
Takes a boolean
variable to set if the week numbers will appear to the left on the days view
showClear
showClear()
Returns a boolean
variable with the currently set options.showClear
option.
showClear(boolean)
Takes a boolean
variable to set if the clear date button will appear on the widget
showTodayButton
showTodayButton()
Returns a boolean
variable with the currently set options.showTodayButton
option.
showTodayButton(boolean)
Takes a boolean
variable to set if the Today button will appear on the widget
toolbarplacement
toolbarplacement()
Returns a string
variable with the currently set options.toolbarplacement
option.
toolbarplacement(string)
Takes a string
value. Valid values are 'default'
, 'top'
and 'bottom'
.
Changes the placement of the toolbar where the today, clear, component switch icon are located.
dayViewHeaderFormat
dayViewHeaderFormat()
Returns a string
variable with the currently set options.dayViewHeaderFormat
option.
dayViewHeaderFormat(string)
Takes a string
value.
Used to customize the header of the day view.
keyBinds
keyBinds()
Returns a string
variable with the currently set options.keyBinds
option.
keyBinds(object)
Takes an object
value.
Allows for several keyBinding functions to be specified for ease of access or accessibility. See the options page for defaults.
clear()
Clears the datepicker by setting the value to null
inline
inline()
Returns a boolean
variable with the currently set options.inline
option.
inline(boolean)
Takes a boolean
value.
Used to customize the header of the day view.
ignoreReadonly
ignoreReadonly()
Returns a boolean
variable with the currently set options.ignoreReadonly
option.
ignoreReadonly(boolean)
Takes a boolean
value.
Set this to true
to allow the picker to be used even if the input field is readonly
. This will not bypass the disabled
property
showClose
showClose()
Returns a boolean
variable with the currently set options.showClose
option.
showClose(boolean)
Takes a boolean
value.
If true
, an icon will be displayed on the toolbar that will hide the picker
debug
For the moment this function will only prevent the picker from calling hide()
on blur
so that the picker can be inspected.
keepInvalid
4.7.14
keepInvalid()
Returns a string
variable with the currently set options.keepInvalid
option.
keepInvalid(boolean)
Takes a boolean
value.
If true
, invalid dates will not be reverted to a previous selection or changed.
allowInputToggle
4.7.14
allowInputToggle()
Returns a boolean
variable with the currently set options.allowInputToggle
option.
allowInputToggle(boolean)
Takes a boolean
value.
If true
, the picker will show on textbox focus and icon click when used in a button group
focusOnShow
4.14.30 PR #884
focusOnShow()
Returns a boolean
variable with the currently set options.focusOnShow
option.
focusOnShow(boolean)
Takes a boolean
value.
If false
, the textbox will not be given focus when the picker is shown
disabledTimeIntervals
4.14.30 Issue: #644
disabledTimeIntervals()
Returns an array
variable with the currently set options.disabledTimeIntervals
option.
disabledTimeIntervals(array)
Takes a array
value.
The array must be in the following format [moment(),moment()]
For example:
disabledTimeIntervals: [[moment({ h: 0 }), moment({ h: 8 })], [moment({ h: 18 }), moment({ h: 24 })]]
Will disable times between 12-8am and 6-12pm today
en/disabledHours
4.14.30 Issue: #851
disabledHours()
Returns an array
variable with the currently set options.en/disabledHours
option.
disabledHours(boolean)
Takes a array
value.
Must be in 24 hour format. Will allow or disallow hour selections (much like disabledTimeIntervals
) but will affect all days.
Like en/disabledDates
, these options are mutually exclusive and will reset one of the options back to false.
disabledHours: [0, 1, 2, 3, 4, 5, 6, 7, 8, 18, 19, 20, 21, 22, 23, 24]
enabledHours: [9, 10, 11, 12, 13, 14, 15, 16]
viewDate
4.14.30 Issue #872
viewDate()
Returns a moment
variable with the currently set options.viewDate
option.
viewDate(viewDate)
Takes a string, moment or Date
value.
This will change the viewDate
without changing or setting the selected date.
parseInputDate
4.14.30 Issue #1095
parseInputDate()
Returns a function
with the currently set options.parseInputDate
parseInputDate(function)
Takes a function
Allows custom input formatting For example: the user can enter 'yesterday' or '30 days ago'.
Example:
var parseRelativeDate = function(relativeDate) {
switch (relativeDate) {
case 'today':
return moment()
case 'yesterday':
return moment().subtract(1, 'day');
default:
return moment()
.subtract(Number(relativeDate.replace("days ago", "").trim()), 'days');
}
}
var parseInputDate = function(inputDate) {
var relativeDatePattern = /today|yesterday|[0-9]+\s+(days ago)/,
resultDate;
if (moment.isMoment(inputDate) || inputDate instanceof Date) {
resultDate = moment(inputDate);
} else {
var relativeDate = inputDate.match(relativeDatePattern),
parseDate = null;
if (relativeDate !== null)
parseDate = this.parseRelativeDate(inputDate.match(relativeDatePattern)[0]);
else
parseDate = moment();
resultDate = moment(parseDate, "YYYY-MM-DD");
}
return resultDate;
}
tooltips
4.14.30
tooltips()
Returns an Ojbect
of options.tooltips
tooltips(tooltips)
Takes an Ojbect
of strings
.
Throws
TypeError
- if tooltips parameter is not anOjbect