angular-datetime
v3.0.4
Published
Basic date/time pickers for Angular.js
Downloads
128
Readme
angular-datetime
Basic date/time pickers for Angular.js.
Maintained by @Tathanen and @dmaloneycalu
Configuration & Usage
Both the date picker and the time picker require Moment as a dependency. Include moment.js
prior to the following directive scripts.
Date Picker
Add dist/angular-date-picker.js
and dist/angular-date-picker.css
to your project, and include vokal.datePicker
in your module dependencies.
<input type="text" data-ng-model="dateModel" data-date-picker[="M/D/YYYY"]
[data-picker-type="date"]
[data-timezone="tzModel"]>
date-picker
By default the picker displays using the M/D/YYYY
Moment date format. You can supply a value to change this to any other supported format. If you format your date in a fashion that moment().format
doesn't understand, you will have... problems.
picker-type
By default the picker will expect the model associated with the input field to be of date
type, and selected values will be stored as date
s. You can set this value to string
instead to store the string value that appears in the input field in the model using the format provided in the date-picker
attribute.
When the model type is date
, the date picker will preserve any time of day already on the model. This allows this directive to work alongside the time picker on the same date
model without interference.
timezone
The date picker has optional support for timezones, provided by moment-timezone. To use timezones, include moment-timezone.js
and its necessary data after the moment.js
script. If this attribute is included without moment-timezone
, a warning will log and this attribute will be ignored.
Supported zones are limited to those identifiable to moment-timezone
, which can be found by running moment.tz.names()
. The attribute is watched and will update the input value on change. If the value is set to null
or undefined
, moment-timezone
will attempt to guess the local timezone.
Time Picker
Add dist/angular-time-picker.js
and dist/angular-time-picker.css
to your project, and include vokal.timePicker
in your module dependencies.
<input type="text" data-ng-model="timeModel" data-time-picker[="h:mm a"]
[data-picker-type="date"]
[data-picker-interval="60"]
[data-timezone="tzModel"]>
time-picker
By default the picker displays using the h:mm a
Moment time format. You can supply a value to change this to any other supported format. If you format your time in a fashion that moment().format
doesn't understand, you will have, yes, problems.
picker-type
By default the picker will expect the model associated with the input field to be of date
type, and selected values will be stored as date
s. You can set this value to string
instead to store the string value that appears in the input field in the model using the format provided in the time-picker
attribute.
When the model type is date
, the time picker will preserve the calendar date already on the model. This allows this directive to work alongside the date picker on the same date
model without interference.
picker-interval
By default the picker will display times on a 60-minute interval. This can be changed to any value between 1
and 60
to include more granular times. Intervals do not wrap around the hour, so a value of 45
will produce a list of times like 2:00
, 2:45
, 3:00
, rather than 2:00
, 2:45
, 3:30
.
timezone
The time picker has optional support for timezones, provided by moment-timezone. To use timezones, include moment-timezone.js
and its necessary data after the moment.js
script. If this attribute is included without moment-timezone
, a warning will log and this attribute will be ignored.
Supported zones are limited to those identifiable to moment-timezone
, which can be found by running moment.tz.names()
. The attribute is watched and will update the input value on change. If the value is set to null
or undefined
, moment-timezone
will attempt to guess the local timezone.