データテーブルコンポーネントのヘッダーを上部に固定し、ページネーターを下部に固定する方法は?
これは私のHTMLです:
<div class="example-container mat-elevation-z8">
<table mat-table #itemsTable [dataSource]="dataSource" class="items-list">
<ng-container matColumnDef="position">
<th mat-header-cell *matHeaderCellDef> No. </th>
<td mat-cell *matCellDef="let element"> {{element.position}} </td>
</ng-container>
<ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef> Name </th>
<td mat-cell *matCellDef="let element"> {{element.name}} </td>
</ng-container>
<ng-container matColumnDef="weight">
<th mat-header-cell *matHeaderCellDef> Weight </th>
<td mat-cell *matCellDef="let element"> {{element.weight}} </td>
</ng-container>
<ng-container matColumnDef="symbol">
<th mat-header-cell *matHeaderCellDef> Symbol </th>
<td mat-cell *matCellDef="let element"> {{element.symbol}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="this.componentsDataService.displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: this.componentsDataService.displayedColumns;" (click)="onRowClicked(row)"></tr>
</table>
<mat-paginator [pageSizeOptions]="[50, 100, 250]" showFirstLastButtons></mat-paginator>
</div>
sticky
をドキュメントの<tr mat-header-row>
に追加しようとしましたが、機能しません。
.tsファイルでのインポート:
import { Component, OnInit, OnChanges, Input, ViewChild } from '@angular/core';
import { TabsDataService } from 'src/app/services/tabs-data.service';
import { ComponentsDataService } from 'src/app/services/components-data.service';
import { MatPaginator, MatTableDataSource, MatTable, MatTableModule } from '@angular/material'
;
6.2.3でsticky属性が追加されたため、プロジェクトのangularマテリアルを更新してみてください。
material site の例で、stickyをmatHeaderRowDefに追加することでヘッダーを修正できることがわかりました。
<tr mat-header-row *matHeaderRowDef="displayedColumns; sticky: true">
ページネーターの場合、クラスをmat-paginatorに追加しました:
<mat-paginator ...
class="mat-paginator-sticky">
コメントで提供されている link @frederikの回答に基づいたクラス
.mat-paginator-sticky {
bottom: 0px;
position: sticky;
z-index: 10;
}
以下のCSSは私のために働いた:
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
.mat-header-row{
position: sticky;
top: 0;
z-index: 100;
background: white;
}
通常のスティッキーmat-footer-row
でcolspan
を使用し、ページネーターを内部に配置できます。
<table mat-table>
...
<ng-container matColumnDef="paginator">
<td mat-footer-cell *matFooterCellDef [colSpan]="displayedColumns.length">
<mat-paginator ...></mat-paginator>
</td>
</ng-container>
<tr mat-footer-row *matFooterRowDef="['paginator']; sticky: true"></tr>
</table>
そして、このようなスタイルを使用して、目をより魅力的にします。
.mat-row:last-child td {
border-bottom: none;
}
.mat-footer-row:first-child td {
border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.mat-footer-cell .mat-paginator {
margin-left: -24px;
margin-right: -24px;
}
マテリアル8.1に従って
スティッキーヘッダーについては、多くの回答に示されているように、スティッキー値をここに指定する必要があります
スティッキーページネーターまたはボトム固定ページネーター用。
Max-heightまたはheight CSSプロパティを使用してdiv内にテーブルをラップし、そのdivの外側にパニネーターを配置できます。
HTMLコードのサンプル。
<div class="mat-elevation-z2">
<div class="table-container">
<!--- List of column definitions here --->
<table mat-table [dataSource]="dataSource" matSort>
<tr mat-header-row *matHeaderRowDef="displayedColumns; sticky: true"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
</div>
<mat-paginator [pageSize]="25" [pageSizeOptions]="[10, 15, 25, 100]"></mat-paginator>
CSS
table {
width: 100%;
}
.table-container {
max-height: calc(100vh - 155px); // or height: calc(100vh - 155px); depending on your need change
overflow: auto;
}