How show the Value on input type select when loading data from AngularJS $scope? The ng-model is filled by controller with an ID from contactTypes
index.html
<select data-ng-model="item.mediumTypeId"
data-ng-options="option.name for option in contactTypes track by option.id">
</select>
controller.js
$scope.item.mediumTypeId = 5102;
Option Values after loading index.html
<option value="5101">E-Mail</option>
<option value="5102">Fax</option>
<option value="5103">Phone</option>
The above Code doesn't select the option in the select field after loading index.html