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?
Try the following:
You can select the options by using the ng-selected attribute and a custom function in your model
And in your model, add a function