I am facing an issue with my angularjs dropdownlist that is using ng-options.
<select ng-options="perlocation.name for perlocation in locations" ng-model="locationDropdown">
Even though my dropdown list loads correctly, the selected option 0 is displaying as empty and I would like it to show "Please Select One."
<option value="?" selected="selected"></option>
I have tried various examples I found online, but none of them seem to work for me. Can someone please guide me on how to fix this issue?
Thank you.