I am encountering an issue with a select element that has predefined options. Even though the select element is using ng-model, when the model is set to one of the option values, it fails to be selected.
Below is the snippet of HTML code:
<select class="modal-textboxes" ng-model="vm.reportPresets.selectedPreset.systemWideAccess">
<option value=false>User</option>
<option value=true>System Wide</option>
</select>
Interestingly, when vm.reportPresets.selectedPreset.systemWideAccess is assigned to true or false, the select option does not get highlighted as selected.