At the moment, my setup looks something like this (in a simplified form):
<select ng-model=model.policyHolder ng-options="person.index as person.name for person in model.insurance.persons">
<option value>Someone else
</select>
This code generates a dropdown menu featuring options with person names, and an empty one labeled "someone else" at the top. The real question here is how I can get that empty option at the end of the dropdown instead.
I want to stick with using ng-options
if possible, given that adjusting the position of the default option seems like too minor a change to warrant switching to the slightly more verbose <option ng-repeat>
method.
Appreciate any help on this matter!