gpt4 book ai didi

Angular 垫表 - 让点击事件工作

转载 作者:行者123 更新时间:2023-12-04 02:00:42 26 4
gpt4 key购买 nike

我想在我的 Angular 应用程序中选择垫表的一个项目(行)。因此我使用的是 Angular Material。我想我不知道添加 (click)-event 的正确位置,还是我必须以其他方式添加?感谢您的帮助!

<div class="table-container mat-elevation-z8">
<mat-table #table [dataSource]="dataSource" matSort>

<ng-container matColumnDef="item_id">
<mat-header-cell *matHeaderCellDef mat-sort-header> ID </mat-header-cell>
<mat-cell *matCellDef="let item"> {{item.id}} </mat-cell>
</ng-container>

<ng-container matColumnDef="item_name">
<mat-header-cell *matHeaderCellDef mat-sort-header> Name </mat-header-cell>
<mat-cell *matCellDef="let item" (click)="onSelect(item)"> {{item.name}} </mat-cell>
</ng-container>

<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>
</div>

示例不工作。

最佳答案

就这样试试

<ng-container matColumnDef="position">
<mat-header-cell *matHeaderCellDef> No. </mat-header-cell>
<mat-cell *matCellDef="let element" (click) = "click('aaa')" > {{element.position}} </mat-cell>
</ng-container>

Working Plunker link

点击表格的第一列

关于 Angular 垫表 - 让点击事件工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47498810/

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