本文介绍了如何在角度材料表中的垫行上添加单击事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我添加了这个,但是在使用 Chrome DevTools 检查元素时,点击功能没有显示!
I added this but when inspecting element using Chrome DevTools, the click function doesn't show!
这是我的代码:
<mat-table [dataSource]="dataSource1" class="mat-table">
<!-- Position Column -->
<ng-container matColumnDef="Objname">
<mat-header-cell *matHeaderCellDef> ObjName </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.objname}} </mat-cell>
</ng-container>
<!-- Weight Column -->
<ng-container matColumnDef="Successcount">
<mat-header-cell *matHeaderCellDef> Successcount </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.successcount}} </mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row (click)="getRecord(element.objname)" *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>
推荐答案
与上面几乎相同的解决方案,但如果您尝试从单击的行中获取对象,则更有用
almost the same solution as above but a bit more useful if you are trying to get the object from the clicked row
<mat-row *matRowDef="let row; columns: displayedColumns;" (click)="getRecord(row)"></mat-row>
当您控制台记录该行时,您将获得该行的整个对象
when you console log the row you will get the entire object of the row
这篇关于如何在角度材料表中的垫行上添加单击事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!