How to disable all FormControls inside a FormGroup

If you want to disable the group, you need to tell what this.Personal is, now you have just declared it as a FormGroup, nothing else. So you can do it after building the form: this.Personal = this.myForm.get(‘Personal’) Then you can just disable it with: this.Personal.disable(); DEMO: http://plnkr.co/edit/QAhY6A9950jqrgzvjVKu?p=preview

Angular form builder vs form control and form group

I have gone through the Angular Official Docs and on the Reactive Forms Part I have seen that: The FormBuilder service is an injectable provider that is provided with the reactive forms module. If you read more you see that the form builder is a service that does the same things as form-group, form-control and … Read more

tech