I'm having a problem loading the screen with a selected combo item. I've tried with jQuery, angled and it did not work. I already researched other answers here and none of the alternatives worked. Anyone have any idea what it might be?
<div class=" form-group col-md-3">
<label class="lb">A Rendimento</label>
<select ng-change="selecionaArendimento(nota.flagARendimento)" id="flagRendimento" ng-model="nota.flagARendimento" class="form-control">
<option ng-selected="selected" value="0">Não</option>
<option value="1" >Sim</option>
</select>
</div>