I have spent a lot of time trying out the solutions I found on SO but nothing seems to work for me. I created the jsfiddle based on a solution I found on SO below ...but still doesn't work.
There are a few issues: 1) a default for selected radio doesn't work 2) when selecting a radio button it doesn't update the model but appears to wipe it out
Please have a look at my fiddle and let me know if I have done something totally stupid. https://jsfiddle.net/findjon/z99dp7nq/
index.html
<div class="radio" data-ng-repeat="option in pudoOptions">
<input type="radio" data-ng-model="selected.deliveryType" data-ng-value="deliveryType" />{{ option.name }}
</div>
{{ selected.deliveryType }}
controller
$scope.pudoOptions = [{name:'standard'},{name:'nextDay'}];
$scope.selected = {
deliveryType : $scope.pudoOptions[0]
};