This is the snippet of my code, I can add new table row if needed, but how to take the value from table in ngFor? *Table is inside reactive form
<tr *ngFor="let row of tableRow; let i = index">
<th scope="row" class="text-center">{{ i+1 }}</th>
<td>
<div class="form-group">
<input type="text" class="form-control" id="supplierRequirementDesc" placeholder="e.g Wiring & Piping" formControlName="suppReqInput">
</div>
</td>
<td>
<div class="form-group">
<select class="form-control" id="supplierUnitPcs" formControlName="suppUnitPcsInput">
<option value="" disabled selected>Pcs</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</td>
<td>
<div class="form-group">
<input type="text" class="form-control" id="supplierQuantityInput" placeholder="Quantity" formControlName="suppQuantityInput">
</div>
</td>
</tr>
</tbody>
</table>
<button type="button" class="btn btn-primary btn-form" (click)="addTableRow()">+ Add new item</button>
<button type="button" class="btn btn-primary btn-form" (click)="deleteRow()">- Remove item</button>
This is current data from console.log Title: abc Description: def Company based in: ghi Company Type: 2 Supplier Category: 4 Bond Value: 100 Verified: Yes Supplier Requirement: zbc Supplier Unit: 2 Supplier Quantity: 1257 Supplier Notes: xzx