I am using AngularJS v1.4.3 and Bootstrap v3.3.6.
I have created a list of radio buttons like below
<div>
<label>Pizza</label>
<ul ng-repeat="option in pizzaOptions">
<input type="radio" name="pizza" ng-model="pickedPizza"
ng-value="{{option}}">
{{option.displayText}}
</ul>
</div>
ngModel- pickedPizza is an object.
When selecting an option the user's selection is saved correctly. The radio button shows the user has selected an option. Once the user navigates to the next page and back the option is no longer selected although ngModel is still populated correctly.
When the ngModel is not an object and I do not need to use ngValue (like below), navigating away from the page and back repopulates the selection fine.
<div>
<label>Drink</label>
<ul ng-repeat="option in drinkOptions">
<input type="radio" name="drink"
ng-model="drinkSelected" value="{{option}}">
{{option}}
</ul>
</div>