I have a select element with static options. The select use a ng-model, but when the model is set to one of the values of the options, it isn't selected.
Here is the HTML:
<select class="modal-textboxes" ng-model="vm.reportPresets.selectedPreset.systemWideAccess">
<option value=false>User</option>
<option value=true>System Wide</option>
</select>
When vm.reportPresets.selectedPreset.systemWideAccess equals true or false, none of the select options are selected.