assume that this is my controller:
function MainController(someService) {
var vm = this;
// remote call to load items
var vm.items = someService.loadItems();
/*
* item's are something like this:
* [
* {
* "id" : 15,
* "topic" : "مرکز شهید بلباسی",
* "default" : false
* }, {
* "id" : 14,
* "topic" : "مرکز شهید کاوه",
* "default" : false
* }, {
* "id" : 13,
* "topic" : "مرکز شهید زین الدین",
* "default" : false
* }, {
* "id" : 4,
* "topic" : "مرکز شهید حسین همدانی",
* "default" : true
* }
* ]
*/
}
and this is select tag:
<select ng-model="vm.searchFilter.itemId"
ng-options="item.id as item.topic for item in vm.items">
<option value=""></option>
</select>
now, i want to set selected option to item that it's default
property is true and don't want to use ng-model
of select tag for this purpose. how can i do that?
To have an option by default, just make sure that particular option to be set in the
ng-model
of theselect
tag.And now select a default value in controller