Skip to content

Instantly share code, notes, and snippets.

@benmj
Created February 28, 2013 22:26
Show Gist options
  • Save benmj/5060685 to your computer and use it in GitHub Desktop.
Save benmj/5060685 to your computer and use it in GitHub Desktop.
ng-repeat on selection
<h2>{{ transaction.Title || "Transactions" }}</h2>
<label for="selectedYear">View transactions from: </label>
<select name="selectedYear" ng-model="selectedYear">
<option ng-repeat="year in years">{{year}}</option>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment