Я попытался использовать реактивную группу форм, чтобы создать форму управления формой поля ввода и выбрать значение раскрывающегося списка тегов.Но когда я открываю экран, выпадающее окно становится пустым, когда я нажимаю на него, оно наполняется данными.
Я хочу показать значение заполнителя при открытии экрана, и пользователь может перейти в раскрывающийся список и выбрать значение параметров.
HTML
[formGroup]="selectieForm">
<div class="row">
<div class="col-md-12">
<div class="content-background">
<div class="content">
<div class="row">
<div class="col-md-2">
<div class="input">
<input type='text' placeholder="BRINNaam" formControlName="identificatieBrin" class="input_control input_control--text input_control--validate input_control--large">
</div>
</div>
<div class="col-md-2">
<div class="input">
<input type="text" placeholder="Vestiging" formControlName="identificatieVestiging" class="input_control input_control--text input_control--validate input_control--large">
</div>
</div>
<div class="col-md-3">
<div class="inpu">
<select id="signalType" class="input_control input_control--m input_control--select" formControlName="identificatieSelectieSignals">
<option value="" disabled hidden>Choose Signal </option>
<option *ngFor="let signal of signals" [value]="signal">{{signal.label}}</option>
</select>
</div>
</div>
<div class="col-md-2" >
<div class="input">
<select id="jaar" class="input_control input_control--m input_control--select " formControlName="identificatieSelectieJaar">
<option value="" disabled hidden>Choose BeKostiging Jaar </option>
<option [value]="jaar" *ngFor="let jaar of jaren">{{jaar.label}}</option>
</select>
</div>
</div>
<div class="col-md-2" >
<div class="input">
<select class="input_control input_control--m input_control--select" formControlName="identificatieSelectieSoort">
<option value="" disabled hidden>Choose Teldatum Soort </option>
<option [value]="type" *ngFor="let type of types">{{type.label}}</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
Component.ts
this.selectieForm = new FormGroup({
identificatieBrin: new FormControl(""),
identificatieVestiging: new FormControl(""),
identificatieSelectieSignals: new FormControl(""),
identificatieSelectieJaar: new FormControl(""),
identificatieSelectieSoort: new FormControl("")
});
Изображение
Когда я выбираю раскрывающийся список «выбрать сигнал или любой», он пуст, когда я его удаляю, тогда он заполняется данными