14

I am using angular ui-select for drop down. How can I set a default value for the drop down value?

<h3>Selectize theme</h3>
  <p>Selected: {{country.selected}}</p>
  <ui-select ng-model="country.selected" theme="selectize" ng-disabled="disabled" style="width: 300px;">
    <ui-select-match placeholder="Select or search a country in the list...">{{$select.selected.name}}</ui-select-match>
    <ui-select-choices repeat="country in countries | filter: $select.search">
      <span ng-bind-html="country.name | highlight: $select.search"></span>
      <small ng-bind-html="country.code | highlight: $select.search"></small>
    </ui-select-choices>
  </ui-select>

The snippet is from plnkr.co. Currently the dropdown just sowing default Select or search a country in the list... But i need to pass a value from controller. Lets say $scope.default = {"name":"Decard"}

Thanks!!

EDIT

This question is similar to This one but involving json return format of data.

1 Answer 1

34

You can initial your ng-model to the default country object in your controller as following:

 $scope.country = {};
 $scope.country.selected = {name: 'Albania', code: 'AL'};

Then use "ui-select-match" to set the default value like this:

<ui-select ng-model="country.selected" theme="selectize" ng-disabled="disabled" style="width: 300px;">
<ui-select-match placeholder="Select or search a country in the list...">{{ $select.selected.name }}</ui-select-match>
<ui-select-choices repeat="country in countries | filter: $select.search">
  <span ng-bind-html="country.name | highlight: $select.search"></span>
  <small ng-bind-html="country.code | highlight: $select.search"></small>
</ui-select-choices>
</ui-select>

Sign up to request clarification or add additional context in comments.

7 Comments

console giving out this error Cannot set property 'selected' of undefined
make sure u have defined the country in your controller before : $scope.country = {};
Ok, now the default is just empty.
Thanks.. I mistakenly set wrong variable name. Now it works
@PavanSandeep I don't now if this is the best solution, but you can use $filter to find the object with the desired ID (assuming the ID is a property of the object). Keep in mind that $filter returns an array, so if the ID is unique, just add [0] to the end of the filter definitions to get the first (and only) result.
|

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.