角形垫台可扩展行

时间:2020-11-02 13:29:38

标签: angular mat-table expandable

在我的项目中,我使用的是可扩展垫桌。 在mat-cell的表中有一些链接。 如何确保单击链接时表不会展开,但链接会发生重定向?

我尝试过

<mat-cell class="table-column" *matCellDef="let row">
  <span (click)="showPopup($event, row.id)">{{row.data}}</span>
</mat-cell>

/////

showPopup(event: UIEvent, id) {
  event.stopPropagation();
  ....
}

但它不起作用。

单击链接时如何撤消表扩展?

0 个答案:

没有答案
相关问题