Is there a way to designate a default selection using ng-options?
In my controller (using the controller as syntax), I have set the following:
this.myOption = this.myOptions[0];
However, the default option is still displaying as blank:
<option value="?" selected="selected"></option>
How can I specify that the default option should be the first value in my model ("Item 1")?