Как установить радиокнопку в Угловом 2
Я новичок в Angular 2.
У меня есть список, итерация его и отображение в виде переключателей, как показано ниже. Теперь я хочу установить свойство check, если условие TRUE. Как это сделать в Angular 2?
<table *ngIf="optionList">
<tr *ngFor="let op of optionList; let i = index">
<td>
<input type="radio" name="optradio" *ngIf=" (CONDITION HERE) ? 'checked' : 'non' ">
<label>{{op.option_text}} </label>
<td>
</tr>
</table>
Ответы
Ответ 1
попробуй это
<table *ngIf="optionList">
<tr *ngFor="let op of optionList; let i = index">
<td>
<input type="radio" name="optradio" [checked]=" (CONDITION HERE)">
<label>{{op.option_text}} </label>
<td>
</tr>
</table>
Демо-версия онлайн: https://embed.plnkr.co/jSht4Do3DzpoVQG2SAwl/