gpt4 book ai didi

css - Angular 中带有 mat-table 的 float 水平滚动条

转载 作者:行者123 更新时间:2023-11-28 11:20:27 25 4
gpt4 key购买 nike

是否可以在没有 JQuery 或任何其他附加插件的情况下将 float 水平滚动条添加到 Angular 7 中的 mat-table

我有一个显示 6 列的 mat-table,但也可以通过按一下按钮动态添加 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;
}

如果溢出都处于事件状态,那么我必须向下滚动才能水平滚动,但布局保持原样。只有 mat-table 和它周围的 div 会滚动,而 mat-table 上方的元素(搜索字段等)将保留在应有的位置。一切都停留在屏幕中间。

如果我停用“.data”中 div 的溢出,则会出现正常的浏览器滚动条,我不必再向下滚动。但是 mat-table 在滚动时将屏幕向右扩展,而在水平滚动时上方的搜索字段将保留在左侧,这对我来说破坏了布局。

我需要的是两个滚动条的组合,在我看来这将是一个 float 滚动条。我只会滚动 mat-table,但其余部分保持原位。

有没有一种方法可以使用 CSS 或 Angular 在本地完成?

演示: https://stackblitz.com/edit/angular-elm867?file=src%2Fapp%2Fapp.component.scss

如果您单击“显示更多”,只需在“.data”中注释“overflow: auto”进出后滚动时查看按钮的行为。

这是一张关于表格滚动条应该如何替换普通滚动条的图片:enter image description here

最佳答案

我希望这对其他人根据单元格内容向 mat-table 和列宽添加水平滚动有帮助。

.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;
}

关于css - Angular 中带有 mat-table 的 float 水平滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55334935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com