I have a rather strange problem which I am unable to figure out. I am trying to append options to dynamically but somehow it doesn't seem to work or I am missing something. Thanks in advance.Plunker Here
2 Answers
This is not obvious. You have to have ng-model on your select for it to work.
http://plnkr.co/edit/tsm0FvzCpf1BuGDkBpEB
<select ng-model="selected" ng-options="c.name for c in list"></select>
I forget this often.