作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在 matHeaderCellDef 上指定 mat-sort-header 属性以在 Angular Material 中创建可排序表后,出现以下错误
MatSortHeader must be placed within a parent element with the MatSort directive.
<mat-table #table matSort [dataSource]="myHttpDataSource">
....
<ng-container matColumnDef="myColumnName">
<mat-header-cell *matHeaderCellDef mat-sort-header></mat-header-cell>
<mat-cell *matCellDef="let row"> {{row.somedetails}} </mat-cell>
</ng-container>
</mat-table>
感谢任何指点/帮助
最佳答案
将 'matSort' 属性添加到 mat-table
<mat-table #table [dataSource]="dataSource" matSort>
</mat-table>
关于angular - MatSort 不工作。抛出错误 : MatSortHeader must be placed within a parent element with the MatSort directive,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51019913/
我在 matHeaderCellDef 上指定 mat-sort-header 属性以在 Angular Material 中创建可排序表后,出现以下错误 MatSortHeader must b
我是一名优秀的程序员,十分优秀!