In an IONIC / CORDOVA app using anglarjs I encountered the following problem:
The angle mounts the select leaving an empty option at startup. example: JSFIDDKE
When selecting one of the options in the list, this empty option disappears. What I need to do is make it exist even after it is clicked. For supposing the person wants to leave the select empty after selecting it, there is no way.
What should be the way to implement this select? Currently it is written like this:
<select class="select_local" name="local" ng-model="formData.local">
<option ng-repeat="local in locals" value="{{local.id}}">{{local.name[lang]}}</option>
</select>