I have already checked other solution with same problem but nothing worked. I am facing issue in selecting the drop down value as per the ng-model. Below is the code I am using -
<select class="form-control" name="adminID"
ng-model="hospitalsCtrl.hospital.admin_id"
ng-disabled="hospitalsCtrl.hospital.ID"
ng-options="admin.ID as admin.email for admin in hospitalsCtrl.adminsList track by admin.ID" required>
<option value="">Please Choose</option>
</select>
Its generating option like below -

The ng-model value is being populated properly , but the element is not selected. Please help.
Fiddle for this https://jsfiddle.net/6xy03urf/4/
TIA.