A simple AngularJS directive to create timezone select. It uses chosen to create auto-complete timezone select. Timezone information comes from moment. Countries timezone data comes from TimezoneDB.
The user is able to choose their timezone by either typing the name of their country, or the name of the timezone directly.
The angular model that is bound to this directive will be set to the timezone name as used by moment-timezone i.e Pacific/Auckland
.
If you have a feature or fix please submit a pull request! This repo follows JavaScript standard style, please make sure all pull requests comply to this before submitting them.
Install using bower
bower install angular-timezone-selector
Make your Angular module depend on module angular-timezone-selector
.
angular.module('timezoneSelectExample', ['angular-timezone-selector']);
Then use directive timezone-selector
.
<timezone-selector ng-model="timezone">
Options can be included as attributes in the html element.
- sort-by ["offset"] - This lets the list be sorted by UTC offset instead of alphabetical order.
- display-utc ["true"] - This show UTC offsets in the timezone names
- show-local ["true"] - This detects local timezone's and includes at the top. If jsTimezoneDetect is installed if will include the detected timezone otherwise it fallback on moment js and list all timezones with the same browsers UTC offset.
- primary-choices ["space seperated timezone names"] - This lets you put important timezone's at the top of the list or include extra aliases. Use names from momentjs-timezone, which you can list with the command:
moment.tz.names;
.
An example of using the options is below:
<timezone-selector
ng-model="timezone"
display-utc="true"
sort-by="offset"
show-local="true"
primary-choices="UTC GB WET GMT Asia/Macau"
></timezone-selector>
The screenshot below show angular-selector in action with all options enabled:
An example of using a custom placeholder message:
<div ng-init="translations.placeholder = 'SeLecT your timezone :)'">
<timezone-selector
ng-model="result"
translations="translations"
display-utc="true"
sort-by="offset"
show-local="true"
primary-choices="UTC GB WET GMT Asia/Macau"
name="timezone"
required>
</timezone-selector>
</div>
or with translate:
<div ng-init="translations.placeholder = ('TIMEZONE_PLACEHOLDER' | translate)">
<timezone-selector
ng-model="result"
translations="translations"
display-utc="true"
sort-by="offset"
show-local="true"
primary-choices="UTC GB WET GMT Asia/Macau"
name="timezone"
required>
</timezone-selector>
</div>
M Clark for adding options for primary & local timezones, and the ability to show and sort by offset.
a-k-g for fixing syntax error in data file and reminding me to update the bower tags!
Tom Grooffer for fixing a crash with JSTZ
karlhass for fixing a crash when two instances were present on the same page and adding injectable strings and translations
Inspired by angular-timezone-select from alexcheng1982.
Styled using the examples from bootstrap-chosen by alxlit