Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Selected option in angular select

I have select with ng-repeat:

<select class="span5 ui-select2 id="goal_{{goal.id}}" multiple="multiple">
  <option ng-repeat="counterGoal in counterGoals" value="{{counterGoal.id}}">{{counterGoal.name}}</option>
</select>

in goal model I have counter_goal_ids array like [1,2,3,4,5,6].

How can I select options that are included in goal.counter_goal_ids?

like image 599
Timothy Klim Avatar asked Jan 15 '23 04:01

Timothy Klim


1 Answers

Try the following:

You can select the options by using the ng-selected attribute and a custom function in your model

ng-selected="isInGoalIds({{counterGoal.id}})"

And in your model, add a function

$scope.isInGoalIds = function(id){
    angular.forEach($scope.counter_goal_ids, function(value, index){
      if(id == value){
        return true;
      }
    });
    return false;
}
like image 83
Jonathan Muller Avatar answered Jan 24 '23 15:01

Jonathan Muller