Угловой 5 Материал: сделать мат-радиогруппу необходимой в реактивной форме - PullRequest
0 голосов
/ 29 ноября 2018

Попытка сделать мою группу радиокнопок обязательной, но не удалось найти ничего конкретного о том, как это сделать.Вот мой HTML-код и TS:

<mat-radio-group name="dealtype" [(ngModel)]="formType" formControlName="formType" required>
          <mat-radio-button value="New Lease">New Lease</mat-radio-button>
          <mat-radio-button value="Ground Lease-New">Ground Lease-New</mat-radio-button>
</mat-radio-group>


this.newLeaseForm = new FormGroup({
  'emailGroup': new FormControl({ value: this.selectedToAdd }),
  'emailList': new FormControl({ value: this.selectedToRemove }),
  'remarks': new FormControl({ value: this.remarks }),
  ['myControl']: new FormControl({ value: this.selectedBU.BusinessUnitId }, Validators.required),
  'formType': new FormControl(null, Validators.requiredTrue),
...