I'm working on this fiddle HERE
this is my controller
angular.module('demoApp', []).controller('DemoController', function($scope) {
$scope.options = [
{ label: 'one', value: 'a' },
{ label: 'two', value: 'b' },
{ label: 'three', value: 'c' },
{ label: 'four', value: 'd' }
];
$scope.selected = [{ 'sel': 'a' },{ 'sel': 'b' },{ 'sel': 'c' } ] ;
});
the $scope.options is the option for my select dom and the $scope.selected is the selected item in my select dom
this is my index.html
<body ng-app="demoApp">
<div ng-controller="DemoController">
<div ng-repeat="data in selected">
<select ng-model="data.sel"
ng-options="opt as opt.label for opt in options">
</select>
selected must be : {{data.sel}}
</div>
</div>
</body>
what I had is this

what I need is on first load the selected must be selected like this

could anyone help me?