The first one appear like below:
<option value="? number:0 ?"></option>
HTML:
<select name="questionId1" class="questionId1 form-control required" tabindex="3" ng-model="abCtrl.form.questionSel.q1.index" ng-change="abCtrl.changeFn()" >
<option ng-repeat="question in abCtrl.form.questions" value="{{question.index}}"
ng-selected="question.index == abCtrl.form.questionSel.q1.index">{{question.val}}
</option>
</select>
JS:
this.form={
questions: [],
questionSel: {q1:{index:0,}, q2:{index:1}},
}
form.questions is filld in by an ajax call