- Angular v1.2+
- MomentJS
- Moment Timezone (If timezones are being used)
This fork of angular-datepicker contains several features.
- The directive will work with or without a specified timezone.
- If the timezone is known, it can be assigned to the datepicker via the
timezone
attribute. - If no timezone is provided, then the local time will be used.
<div date-picker></div>
<div date-picker timezone="Europe/London"></div>
<div date-picker timezone="Asia/Hong_Kong"></div>
- These attributes restrict the dates that can be selected.
- These work differently from the original
min-date
andmax-date
attributes, which they replace. - The original attributes allow selecting any dates and just mark the input as invalid.
- With these attributes, if a date in the picker is outside of the valid range, then it will not be selectable.
<input date-time min-date="minDate">
<input date-time max-date="maxDate">
<input date-time min-date="minDate" max-date="maxDate">
- A custom format for a date can be assigned via the
format
atribute.- This format will be used to display the date on an input field.
- If not provided, a default format will be used.
- See: format options
<input date-time format="yyyy-MM-dd HH:mm">
- Adding a
date-change
attribute containing a function name will cause this function to be called when the date changes in the picker.
<input date-time date-change="changeDate">
- An event can be broadcast from the parent scope which will update specific pickers with new settings. The settings which can be changed are:
minDate
: Earliest selectable date for this picker. Disabled if this value is falsy.maxDate
: Latest selectable date for this picker. Disabled if this value is falsy.minView
: Minimum zoom level for date/time selection. Disabled if this value is falsy.maxView
: Maximum zoom level for date/time selection. Disabled if this value is falsy.view
: Default zoom level for date/time selection. Set to default value if this value is falsy.format
: Format string used to display dates on the input field. Set to default value if this value is falsy.- See: format options
- This option cannot be used on the
date-picker
directive directly, it must be used on adate-time
input field.
- The possible for the
view
,minView
andmaxView
fields are:year
,month
,date
,hours
,minutes
.
- The event is targeted at specific pickers using their
ID
attributes.- If a picker exists with the same
ID
then the information in this picker will be updated. - A single
ID
can be used, or an array ofID
s
- If a picker exists with the same
<input date-time id="pickerToUpdate">
$scope.$broadcast('pickerUpdate', 'pickerToUpdate', {
format: 'D MMM YYYY HH:mm',
maxDate: maxSelectableDate, //A moment object, date object, or date/time string parsable by momentjs
minView: 'hours',
view: false //Use default
});
$scope.$broadcast('pickerUpdate', ['pickerToUpdate', 'secondPickerToUpdate'], {
format: 'lll'
});