このように FormGroup を作成するとします
this.orderProductForm = this.formBuilder.group({
productList: []
});
this.addressForm = this.formBuilder.group({
shippingName: '',
shippingAddress: '',
shippingMobile: '',
});
その後、私は電話をかけました...
this.orderProductForm.enable();
this.addressForm.enable();
また
this.orderProductForm.disable();
this.addressForm.disable();
うまくいきません、助けてください..