Is there a way to implement a scroll feature in a table to ensure that the first column and row remain fixed while scrolling, even when the number of rows or columns increases?
<ngx-datatable id="table" #table class="" [rows]="tt">
<ngx-datatable-column name="b" prop="ff" ></ngx-datatable-column>
<ngx-datatable-column *ngIf="q" name="Site No" prop="ff"></ngx-datatable-column>
<ngx-datatable-column name="q" prop="r" ></ngx-datatable-column>
<ngx-datatable-column name="ww" prop="ww" >
<ng-template ngx-datatable-cell-template let-row="row">
{{ row.qw| currency:'USD':'symbol':'1.2-2' }}
</ng-template>
</ngx-datatable-column>
</ngx-datatable>
I experimented with SCSS properties such as z-index
and wrap
.