I've bound a model to an ui-select like so
<ui-select multiple ng-model="selectedPeople" theme="bootstrap" style="width:300px;">
However, neither the $scope.selectedPeople
gets updated upon selection, nor the ui-select choices are updated when the array is manually changed.
See plunker here
What i'm trying to do here is to programmatically add an item in the ui-select listing. How to?