There is a drop down div in my code which is like this :
<div class="form-group alert_txt col-lg-6">
<label class="form_lable">Field</label><br>
<select class="form-control" onchange="funct1('rteSample',this.value)" ng-model="field" >
<option value="" selected >Choose field</option>
<option ng-repeat="x in field" value="{{x.fieldSymbol}}" >{{x.fieldName}}</option>
</select>
</div>
Here the drop down has a blank always even though I've given default selection as Choose field.
Also I want to return to the Choose field once any element in the list is selected. Can we do that ?
Yes I've tried other solution as well with same problem and they really didn't work. this