I'm trying to make an Ionic 3 app with Angular 7. I have a dynamic reactive form where a new form group is being added when you click on a button.
How do I validate the nested fields? How do I write the getter or how to address the needed field in html?
The main problem is that I have an array of the FormGroups (see PostPieces) so from Angular the validator doesn't know which PostPiece from array it refers too so I don't really know how to write a getter for this. The form DOES get invalid BUT I can't output the message because I don't know how to the condition check in this case.