是否可以在不使用JQuery或任何其他附加插件的情况下,将浮动水平滚动条添加到Angular 7中的mat-table
上?
我有一个mat-table
,它显示6列,但是只要按一下按钮,就可以动态添加100多个列。
但是布局中断了。
HTML部分:
<button (click)="showLess()" mat-stroked-button class="show-button">Show Less</button>
<button (click)="showMore()" mat-stroked-button class="show-button">Show More</button>
<div class="component data component-card">
<mat-card *ngIf="dataSource?.filteredData" class="mat-card">
<mat-paginator [length]="length" [pageSize]="100" [pageSizeOptions]="[100, 250, 500, 1000, 2000]" showFirstLastButtons> </mat-paginator>
<mat-table [dataSource]="dataSource" matSort class="table">
<ng-container class="container" *ngFor="let displayedColumn of displayedColumns" matColumnDef="{{ displayedColumn }}">
<mat-header-cell class="header-cell" *matHeaderCellDef >
<span mat-sort-header class="sort-header">{{ displayedColumn | uppercase }}</span>
<input class="table-input" matInput (keyup)="applyFilter($event.target.value)" (focus)="setupFilter(displayedColumn)" placeholder="Filter"/>
</mat-header-cell>
<mat-cell class="cell" *matCellDef="let item">{{ item[displayedColumn] }}</mat-cell>
</ng-container>
<mat-header-row class="header-row" *matHeaderRowDef="displayedColumns; sticky: true"></mat-header-row>
<mat-row class="row" *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>
</mat-card>
CSS部件:
.data {
display: block;
width: 95vw;
overflow: auto;
.table {
width: 100vw;
max-width: 100%;
overflow: auto;
margin-bottom: 10px;
display: table;
border-collapse: collapse;
margin: 0px;
background-color: rgb(238, 238, 238);
}
.row,
.header-row {
display: table-row;
min-height: 36px !important;
}
.cell,
.header-cell {
word-wrap: initial;
display: table-cell;
padding: 0px 5px;
line-break: unset;
width: fit-content;
white-space: nowrap;
overflow: hidden;
vertical-align: middle;
text-align: center;
}
.header-row,
.header-cell {
margin: 0 auto;
min-height: 100px !important;
text-align: center;
vertical-align: middle;
align-self: center;
}
.sort-header {
display: flex;
align-content: center;
text-align: center;
justify-content: center;
font-size: 12pt;
}
.header-cell {
font-weight: bold;
}
}
.mat-card {
min-width: max-content;
max-width: max-content;
}
如果两个溢出都有效,那么我必须向下滚动才能水平滚动,但布局保持应有的状态。仅会滚动垫子表及其周围的div,并且垫子表上方的元素(搜索字段等)将保留在应有的位置。一切都停留在屏幕中间。
如果我在“ .data”中停用了来自div的溢出,则将显示正常的浏览器滚动条,而我不再需要向下滚动。但是,在滚动时,垫子表会将屏幕向右扩展,并且在水平滚动时,上方的搜索字段将保留在左侧,这对我来说是一个布局。
我需要的是两个滚动条的组合,这在我眼中是一个浮动滚动条。我只会滚动垫子桌子,其余的都留在原处。
有没有一种方法可以通过CSS或Angular本身完成?
演示: https://stackblitz.com/edit/angular-elm867?file=src%2Fapp%2Fapp.component.scss
如果单击“显示更多”,只需在“ .data”中注释“溢出:自动”后滚动,看看按钮的行为。
答案 0 :(得分:1)
我希望这对其他人能够根据单元格内容为横向添加到mat-table和column width有所帮助。
.mat-table {
overflow-x: scroll;
}
.mat-cell,
.mat-header-cell {
word-wrap: initial;
display: table-cell;
padding: 0px 10px;
line-break: unset;
width: 100%;
white-space: nowrap;
overflow: hidden;
vertical-align: middle;
}
.mat-row,
.mat-header-row {
display: table-row;
}
答案 1 :(得分:0)
在您的existing stackblitz中,只需进行一次更改即可...
在SCSS中,将类定义为:
mat-paginator{width:97vw;}
答案 2 :(得分:0)
在styles.css
中添加以下内容以删除水平滚动条
html,
body {
margin: 0 !important;
padding: 0 !important;
}
如果多余的列被溢出,还可以添加.table
中的水平滚动。
.mat-card {
min-width: 100% !important;
max-width: 100% !important;
}
.table {
display: block !important;
}
Stackblitz Demo with adjusted table data after dynamic column addition
更新1:
修复了容器div max-height
的{{1}},用于将水平滚动条固定在容器中。
.data
Demo with Fixed Max Height on Outer Container for fixing scrolls
答案 3 :(得分:0)
我只是添加了这个 css 代码:
.mat-table {
overflow-x: scroll;
}
.mat-row,
.mat-header-row {
min-width: 800px;
}