How can I bind a Boolean column to a checkbox in ngx-datatable? Currently I am using angular material table and use the following method :
<ng-container matColumnDef="Active">
<mat-header-cell *matHeaderCellDef class="generic-centeredCell"> Active </mat-header-cell>
<mat-cell *matCellDef="let element" class="generic-centeredCell">
<span class="mobile-label">Active:</span>
<mat-checkbox [(ngModel)]="element.active"></mat-checkbox>
</mat-cell>
</ng-container>
How can I make use of above code when I move to ngx-datatable? I cant event find a sample. The only samples I have seen so far is http://swimlane.github.io/ngx-datatable/#chkbox-selection which doesn't explain how to bind the boolean column to a checkbox.