I am creating a web app in which i am fetching the data from database,
<select ng-model="ucomname" ng-init="ucomname='{{o.comname}}'" ng-change="uucomname(o)">
<option ng-repeat="o in comnamelistfun" value="{{o.comname}}">{{o.comname}}</option>
</select>
this is my dropdownlist, but it is adding a blank row on the top, but when i fetch static data it works fine, but when i use dynamic data it starts to add an extra blank space in the dropdownlist,
NOTE: data is pure dynamic, and it is working fine with static data
I also tried ng-option
but still getting extra blank space