Created
November 10, 2014 03:33
-
-
Save garciadanny/1b884e4bf15e40408bb2 to your computer and use it in GitHub Desktop.
BlogPost: AngularJS Custom Directives
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select ng-model="status" ng-options="profile.status as profile.status for profile in profiles | unique:'status'" > | |
<option value="">All</option> | |
</select> | |
<select ng-model="city" ng-options="profile.city as profile.city for profile in profiles | unique:'city'" > | |
<option value="">All</option> | |
</select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment