When you first open the page, the <ngx-datatable>
appears like this
https://i.sstatic.net/BQvBw.png
But once you click on the navbar, it transforms into this
https://i.sstatic.net/p8Bfd.png
In the second image, you can see that the navbar column does not resize properly after clicking.
Here is the snippet of code:
<ngx-datatable
#table
class="material"
[rows]="data"
[loadingIndicator]="loadingIndicator"
columnMode="force"
[headerHeight]="60"
[footerHeight]="80"
rowHeight="auto"
[limit]="10"
[scrollbarH]="scrollBarHorizontal"
[reorderable]="reorderable"
[selected]="selected"
[selectionType]="'checkbox'"
(select)="onSelect($event)"
>
I've tried to find a solution for this issue without success. Thank you.