HTML:
<div ng-app="myApp" ng-controller="myCtrl">
<label ng-repeat="x in list">
<input type="radio" ng-model="test" value="x" >{{x}}
</label>
<br>
Exec type: {{test}}
</div>
JS:
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.list = ["xxx", "yyyy"];
$scope.test = "";
});
JS Fiddle: http://jsfiddle.net/0ku4jvsn/5/
Nothing is bound with $scope.test. This line: Exec type: {{test}} is showing nothing.