assume that I create FormGroup like this
this.orderProductForm = this.formBuilder.group({
productList: []
});
this.addressForm = this.formBuilder.group({
shippingName: '',
shippingAddress: '',
shippingMobile: '',
});
and after that I called...
this.orderProductForm.enable();
this.addressForm.enable();
or
this.orderProductForm.disable();
this.addressForm.disable();
It's not working, please help..