Я использую тэг формы для отправки поля ввода %_complete с соответствующим ему идентификатором, но после использования тэга формы он возвращает только один Id для всех полей.Можно ли иметь несколько полей id внутри тега ngform?
<form ngForm="form" (submit)="onSubmit(form)">
<mat-card *ngFor="let item of measure.items; index as i" style="margin:2em;">
<mat-card-title>{{item.items[0].task_descr}} ({{item.items[0].uid}})</mat-card-title>
<mat-card-subtitle>Section {{item.items[0].g_code}}</mat-card-subtitle>
<ul *ngFor="let row of item.items; index as j">
<mat-grid-list cols="2" rowHeight="10:1" gutterSize="1">
<mat-grid-tile [rowspan]="1" [colspan]="1">
{{row.item_desc}} ({{row.item_weight | percent }} of Total)
</mat-grid-tile>
<mat-grid-tile [rowspan]="1" [colspan]="1">
<mat-form-field>
<mat-label>Enter Progress</mat-label>
<input type="hidden" [ngModel]="row.id" name="id">
<input [(ngModel)]="row.percent_complete" name='percent_complete' matInput placeholder="Enter Progress (%)">
</mat-form-field>
</mat-grid-tile>
</mat-grid-list>
</ul>
</mat-card>
<button mat-raised-button color="primary">Submit</button>
</form>