$scope.property = new Property();
$scope.property.propertyType = {};
$scope.propertyTypes = [
{ value: \'ResidentialPlot\', name: \'Residential Plot\' },
{ valu
I had the same problem. I looked up the documentation in:
https://github.com/angular-ui/ui-select/wiki/ui-select-choices
The best way to do this is:
Note how we are able to specify value.id in repeat while still using value.name for what is shown within the combo box. This will work with ng-model being set to the value.id (whatever was saved).
I verified this works for me. Posting here because Google brings people to this page.