When submitting the form, is there a way to retain all the data without replacing with a same data(marks) in the Angular Reactive forms that change with Angular Directives? I tried bellow code but, I couldn't find out way to get all "marks" inputs.
<div *ngFor="let item of stuData">
<label>{{item.name}}</label>
<input type="number" min="0" max="100" placeholder="Marks" formControlName="marks">
</div>
You can probably arrange something with dynamics form groups like this:
https://www.bitovi.com/blog/managing-nested-and-dynamic-forms-in-angular
And in the .ts