multi-select
multi-select copied to clipboard
How to get the array of values in seletction table?
The same question.
This code not working, the list for select is empty:
<select name="controllers-select[]"
id="controllers-select"
ng-model="selectedItems"
multiple
ng-multiple="true">
<option ng-repeat="item in jobs.listControllers"
value="{{item.id}}">
{{item .description}}
</option>
</select>