I'm attempting to create a series of radio buttons using ui bootstrap (http://angular-ui.github.io/bootstrap/) similar to the example on their website, but utilizing ng-repeat:
<div class="btn-group">
<label ng-repeat='option in options' class="btn btn-danger" ng-model="radioModel2" btn-radio="'{{option}}'" uncheckable>{{option}}</label>
</div>
However, for some reason it's not working when I use ng-repeat. Does anyone know why?
I've created a plunker to demonstrate the issue: http://plnkr.co/edit/0sDgKoRhHOgfnIvBPmi4?p=preview
Appreciate any insights!