I would like to have the first element of my ng-options to be the default one:
<select data-ng-options='item.pk for item in items' data-ng-click='update()'></select>
(so this is different than having an <option value=''>Default</option>
at the end of the select. I also would like update() to be called at the beginning (on the default option).
How can I achieve this ?