Angular 2 select tag with formControlName not working.
pmsList having data like as follows: [{id:1,pms:'test'},.......]
but when in constructor I set:
this.pms.setValue({id:1,pms:"test"})
then its doesn't reflects the value on html page.
here is my html code:
<select formControlName="pms" class="form-control down-arrow">
<option value="">Select</option>
<option *ngFor="let item of pmsList">{{item.pms}}</option>
</select>