I have added a multiple select using this plunker http://jsfiddle.net/ishanbakshi/fyhsz9ra/ .and it's working succesfully but now i want to get the value of multiple select in ng-model(angularjs).nad i have tried like this.but failed.
Code:
<select multiple id="e1" style="width:300px" name="cities" ng-init="get_city_by_search()" ng-model="submitAdsFormData.cities[$index]">
<option value="{{x.id}}" ng-repeat ="x in searchResult">{{x.name}}</option>
</select>
So, can anyone help me to get this.Thanks in advance.and also any help will be appreciated.