Date and time picker addon based on bootstrap. It uses bootstrap-datetimepicker and moment.js.
- Node.js 4 or newer
- Bootstrap 3
- Ember >= 2
- Ember CLI
ember install ember-cli-bootstrap-datetimepicker
For demonstration see bootstrap-datetimepicker
Basic example:
Returns: date
, null
Fired when the date is changed.
Default: null
Accepts: date
, moment
, string
Sets the picker date/time.
Default: []
Accepts: array
of [number
]
Disables selection of days in the array, e.g. sundays.
Default: false
Accepts: array
of [date
, moment
, string
]
Disables / enables selection of dates in the array, e.g. holidays.
Default: false
Accepts: array
of [number
]
Disables / enables selection of hours in the array, affecting all days.
Default: true
Accepts: boolean
If false
, the textbox will not be given focus when the picker is shown.
Default: false
Accepts: string
See momentjs' docs for valid formats. Format also dictates what components are shown, e.g. MM/dd/YYYY
will not display the time picker.
Defaults: component defaults
'ember-cli-bootstrap-datetimepicker': {
icons: {
next: 'chevron right',
previous: 'chevron left'
}
}
Replaces icon classes globally.
Supported icons include clear
, close
, date
, down
, next
, previous
, time
, today
and up
.
If inner html has to be set (Material Icons), use ::after
pseudo selector.
Note: When using only the time picker, pass isTime=true
so that the correct icon is displayed.
Defaults: component defaults
Default: moment.locale()
Accepts: string
, moment.local('locale')
Use the specified locale for text rendering.
Note: When using localization, add includeLocales
to config/environment.js
.
Cherry pick locales (optimal)
moment: {
includeLocales: ['de', 'fr']
}
Include all locales
moment: {
includeLocales: true
}
Default: false
Accepts: date
, moment
, string
Prevents date/time selections after this date.
Default: false
Accepts: date
, moment
, string
Prevents date/time selections before this date.
Default: false
Accepts: boolean
Opens the picker on input focus.
Default: false
Accepts: boolean
Show the Clear button in the icon toolbar.
Clicking the Clear button will set the calendar to null
.
Default: false
Accepts: boolean
Show the Close button in the icon toolbar.
Clicking the Close button will call hide()
.
Default: false
Accepts: boolean
Show the Today button in the icon toolbar.
Clicking the Today button will set the calendar view and set the date to now
.
Default: false
Accepts: boolean
Show calendar and time side by side.
Default: ''
Accepts: string
Set timezone
Default: false
Accepts: boolean
, 'year', 'month', 'day', 'hour', 'minute'
If the date is not set, the first time the widget opens will set the date
to current moment (if true
). Granularity can be specified as a string
.
Default: false
Accepts: date
, moment
, string
Pre-set the date / time, allowing to change default time from 12:00 AM.
Default: days
Accepts: 'years', 'months', 'days'
The default view to display when the picker is shown.
Note: To limit the picker to selecting, for instance the year and month, use format: MM/YYYY
Default: { horizontal: 'auto', vertical: 'auto' }
Accepts: object
with one or all of the parameters above
(horizontal: 'auto', 'left', 'right' / vertical: 'auto', 'top', 'bottom')
Will position widget according to the parameters given in object.
Default: true
Accepts: boolean
Show calendar or time icon after input.