Is it possible to display a different value than what is in the repeater if the selected value doesn't exist in the repeater in this scenario?
<input type="text" ng-model="somethingHere2"/>
Select:
<select ng-init="somethingHere2 = options.default"
ng-model="somethingHere2"
ng-options="items for items in options.values">
</select>
$scope.workItem = 100;
$scope.options = {
default:$scope.workItem,
values:[1,2,3,4,5]
};
$scope.serviceValues = Service; // Service = .factory('Service',...)