How to define the default selected options in the select box. I'm able to display my options like this :
<select ng-model="selectedOptionId">
<option value="">Select Option</option>
<option ng-repeat="o in options" value="{{o.id}}">
{{o.name}}
</option>
</select>
But I am not able to define the default selected value