Project Link: Click here to view the project
In my testForm, I have 3 levels of formGroup, with the last formGroup being an array of formGroups.
I am trying to enable the price field when a checkbox is clicked.
I am unsure how to access the price control from the array within this form group.
I am aware that I can disable it using [attr.disable]="variable", but I am concerned if this is mixing TemplateDrivenForm with ReactiveForm. If there is no other way to disable it using ReactiveForm methods, I will consider this approach.
Any guidance or suggestions would be greatly appreciated. Thank you!