<table class="table table-hover table-bordered">
<thead>
<tr>
<th scope="col">Agenda No</th>
<th scope="col">Agenda Description</th>
<th scope="col">Opinion</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let item of agendaList">
<td>Agenda {{item.AGENDANO}}</td>
<td>{{item.AGENDA_DESC}}</td>
<td>
<div class="custom-control custom-radio">
<input type="radio" value="1" id="customRadio1" name="customRadio" class="custom-control-input">
<label class="custom-control-label" for="customRadio1">Yes</label>
</div>
<div class="custom-control custom-radio">
<input type="radio" value="0" id="customRadio2" name="customRadio" class="custom-control-input">
<label class="custom-control-label" for="customRadio2">No</label>
</div>
</td>
</tr>
</tbody>
</table>
У меня есть таблица из 3 значений. В каждом ряду будет 2 переключателя «да» или «нет». Как я могу выбрать один из них в каждом ряду индивидуально.
Средства:
1-й ряд -> "да", "нет" ---> я выберу да
2-й ряд -> "да", " нет "---> я выберу нет
3-я строка ->" да "," нет "---> я выберу да
Как я могу это сделать?