Hi This is my html code
<select style="width: 199px;margin-top: -9px;" id="ddlTypeCode" ng-model="selectedCountryCode" ng-change="locationChange(selectedCountryCode)" name="ddlTypeCode" class="form-control">
<option ng-repeat="Country in CountryList track by $index" value="{{Country}}"
ng-selected="Country == 'India'">
{{Country}}
</option>
CountryList don't have any empty value but in UI Drop down showing one empty entry.Please suggests