I have an ngx-datatable witch checkboxes, only 1 checkbox needs should be selected at a time.
I have tried to accesing the event using this:
html
<ngx-datatable
class="margin-left bootstrap"
[rows]="rows"
[loadingIndicator]="'true'"
[rowHeight]="'30'"
[reorderable]="'true'"
[scrollbarH]="'true'"
[columnMode]="'standard'"
[columns]="columns"
[selectionType]="'checkbox'"
[selectAllRowsOnPage]="false"
(select)='onSelect($event)'>
</ngx-datatable>
But the event only contain what is selected. Would there be a way to unselect everything but the last checkbox clicked?