我有一个离子移动应用程序,其中正在渲染一个ngx数据表。问题是,水平滚动时,列标题的滚动速度要比表格主体慢。看起来很糟糕。如果有人遇到此问题,请提供帮助。
在https://streamable.com/6rzoy这里查看问题
我尝试包装内容,将css添加到滚动条中,并对列使用固定宽度,但到目前为止没有成功。
我的html代码:
<ion-content >
<ngx-datatable class="fullscreen" [ngClass]="tableStyle" [rows]="rows" [sortType]="'single'" [reorderable]="true" [scrollbarH]="true" [columnMode]="columnMode" [headerHeight]="50" [footerHeight]="50" [rowHeight]="'auto'" [summaryRow]="true" [summaryPosition]="'bottom'" [limit]="10">
<ngx-datatable-column *ngFor="let key of keys" [prop]="key"></ngx-datatable-column>
</ngx-datatable>
在水平滚动时,我需要使各列与表的内容平滑对齐。