我有一个MatTable,它实现了Angular Material的documentation所指示的选择
一切正常,进行选择等;但是我在考虑是否有可能应用某种排序方式,以便我可以对数据源进行排序,以便首先显示选定的行。
<table mat-table matSort [dataSource]="dataSourcePPC" class="w-100 table-bordered table-hover">
<ng-container matColumnDef="select">
<th mat-header-cell *matHeaderCellDef></th>
<td mat-cell *matCellDef="let row" class="text-center">
<mat-checkbox (click)="$event.stopPropagation()" (change)="$event ? selectionPPC.toggle(row) : null;"
[checked]="selectionPPC.isSelected(row)">
</mat-checkbox>
</td>
</ng-container>
<ng-container matColumnDef="type">
<th mat-header-cell *matHeaderCellDef mat-sort-header> Type </th>
<td mat-cell *matCellDef="let ppc">{{ ppcTypeModel[ppc.type] }}</td>
</ng-container>
...
<tr mat-header-row *matHeaderRowDef="displayedColumnsPPC"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumnsPPC;" [ngClass]="{'selected': selectionPPC.isSelected(row)}" (click)="selectionPPC.toggle(row)"></tr>
</table>
我正在研究sortingDataAccesor
函数,但是我真的不明白它是如何工作的。对此有任何帮助。
答案 0 :(得分:1)
您可以执行以下操作。
这是复选框的工作方式。
<ng-container matColumnDef="select">
<th mat-header-cell *matHeaderCellDef>
<mat-checkbox (change)="$event ? masterToggle() : null" [checked]="selection.hasValue() && isAllSelected()"
[indeterminate]="selection.hasValue() && !isAllSelected()" [aria-label]="checkboxLabel()">
</mat-checkbox>
<div mat-sort-header>
<mat-icon>ac_unit</mat-icon>
</div>
</th>
<td mat-cell *matCellDef="let row">
<mat-checkbox (click)="$event.stopPropagation()" (change)="$event ? selection.toggle(row) : null"
[checked]="selection.isSelected(row)" [aria-label]="checkboxLabel(row)">
</mat-checkbox>
</td>
</ng-container>
并在打字稿中编写。
this.dataSource.sortingDataAccessor = (item, property) => {
switch (property) {
case 'select': return this.selection.selected.includes(item);
case 'nestedObject': return item.parentObject.childObject;
default: return item[property];
}
};
基本上,由于将数据传递给sortingDataAccessor时,我的matColumnDef为“选择”,因此您需要检查其是否与“选择”匹配。一旦知道它与“选择”匹配,就可以检查您的项目(即当前行)是否包含在所选项目的数组(selection.selected array)中。
selection = new SelectionModel(true, []); // you already should have this since you have select.
我还介绍了如何对嵌套对象进行排序。如果需要的话。如果您有嵌套对象,则需要在switchcase中编写诸如case'nestedObject'之类的东西。 “ nestedObject”就是您在表中称为列的任何东西。
我在项目中检查了它,并且效果很好。
祝你好运!