我正在使用ngx-datatable,我要在其中实现离子无线电
<ngx-datatable-column name="Actions" sortable="false" prop="chk">
<ng-template let-column="column" let-sort="sortFn" ngx-datatable-header-template>
</ng-template>
<ng-template let-row="row" let-value="value" ngx-datatable-cell-template radio-group>
<ion-radio color="danger" [value]="row.chk" name="myRow" (click) = "radioClicked(row)"></ion-radio>
</ng-template>
</ngx-datatable-column>
但是当我选中1个单选按钮,然后又选中了第2个单选按钮时,两者都显示为选中状态,有没有办法解开另一个单选按钮
预先感谢