Having trouble with ng-options not working as expected? Despite following the required structure, it seems like you're getting the same result. Don't worry, I've been researching the topic endlessly and could use some help from you guys.
HTML:
<div ng-app>
<div ng-controller="myCtrl">
<select ng-options="person.name for person in people">
</select>
</div>
</div>
JS:
function myCtrl($scope) {
$scope.people = [
{ name: "My domain" },
{ name: "qe" },
{ name: "contact_base_esp" },
{ name: "Domain 1" },
{ name: "Domain 2" },
{ name: "this is a template" },
{ name: "Contact base esp" }
];
}
Fiddle: http://jsfiddle.net/5DMjt/1005/