I am having this issue and hope someone can help me. Here's the code:
<div class="country-form">
<select multiple class="form-control">
<option ng-click="countryChanged(country)"
ng-model="selectedCountries" ng-repeat="country in options.countries">{{country}}
</option>
</select>
</div>
I have $scope.selectedCountries = []; in my controller I am not exactly sure how I can preset some countries. Any help will be appreciated.
THank you