Here is a snippet. Q2 is selected as I expect.
<select name="quarter" ng-model="Quarter" >
<option value="1" >Q1</option>
<option value="2" ng-selected="Quarter=='Q1'">Q2</option>
<option value="3">Q3</option>
<option value="4">4</option>
</select>
Changing 'Q1'
to 'Q2
' makes nothing as selected as I expect. Now putting ng-selected="Quarter=='Q1'"
DOES NOT make Q1 selected until i delete ng-selected="Quarter=='Q2"
wtf. How is this suppose to work?
[Follow this example](http://stackoverflow.com/a/41925114/4805527) – T-Bee Jan 29 '17 at 19:49