I am currently facing a situation in which I have an HTML table connected to a Reactive Form's FormArray. The information retrieved from the server is displayed in the table and should always be read-only. However, I wish to allow the addition of a new row that is editable, with input fields and dropdowns.
Check out this Stackblitz example where I can add a new row, but it remains read-only. I would like the newly added row to contain editable input controls.
Is there a way to achieve this?