http://plnkr.co/edit/fwwAd4bn6z2vxVN2FUL7?p=preview
On the Plunker page linked above, I am trying to achieve a specific functionality. I would like the 3 dropdown lists to display values A, B, and C initially. When a 4th dropdown option is added, it should include value D as well. The requirement is that all alphabet letters should be selectable from the dropdown list.
<option ng-repeat="n in characters" ng-selected="$index == $parent.$index">{{n}}</option>
When you press ADD, the dropdown selections should show ABC selected initially and remain selected even after adding a new option. However, they are not staying selected. How can I make sure the selections stay selected?