Check out this list I have:
https://i.sstatic.net/NPZ1V.png
It is generated by this code snippet:
<select multiple size=11 ng-model="AvailableColumns" ng-show="NamesAvailable" ng-options="item for item in names">
</select>
Here is the array used:
$scope.names = ["Device Name", "Description", "Device ID", "Update Required", "Open Time", "Open Time Ada", "Opening Mode", "Timed Period Stable Id", "Automatic Change Stable Id", "Keypad Code", "Battery Status", "Last Updated"];
I am curious about how to select a specific item in the code. For instance, if I want to choose 'Open Time', how can I achieve this using AngularJS?