ANGULAR 15 REACTIVE : NESTED FORM GROUP

Publicado em: 17 Junho 2019
no canal de: Techie Ocean
17,811
187

In this tutorial, we will see how to create,

1.Nested Form Group
2. How to Access controls in Nested Form Group

In the previous tutorial, we have seen how to create a simple formgroup

eg :
userprofileForm = new FormGroup({
firstName: new FormControl(''),
lastName: new FormControl(''),
age: new FormControl(''),
email:new FormControl(''),
});



So we will have a nested formgroup named "address"

userprofileForm = new FormGroup({
firstName: new FormControl(''),
lastName: new FormControl(''),
age: new FormControl(''),
email:new FormControl(''),

,
address: new FormGroup({
address1: new FormControl(''),
address2: new FormControl(''),
state: new FormControl(''),
zip: new FormControl('')
})
});


So here we will define the controls in same way in html:
How to Access controls in Nested Form Group :

We can access the formcontrol in the nested FormGroup using :

this.userprofileForm.get(['address','address1']).value

Here userprofileForm is the root formgroup. In the Get method, we will pass the name of the nested formgroup named
'address' and the formcontrol in that formgroup named 'address1'.

We can also do the same thing using,

this.userprofileForm.get('address').get('address2').value


#Angular #Angular 8 #Angular 12 #Angular 13 #Angular 15


Nesta página do site você pode assistir ao vídeo on-line ANGULAR 15 REACTIVE : NESTED FORM GROUP duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Techie Ocean 17 Junho 2019, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 17,811 vezes e gostou 187 espectadores. Boa visualização!