mat-tab过渡会触发具有可扩展行的角度材质表中的其他动画

时间:2020-10-27 09:40:21

标签: angular angular-material angular-animations mat-table mat-tab

我有一个带有mat-tab-group的屏幕,一个选项卡包含一个带有可扩展行的表,这些行仅在单击时才会被扩展,但是这里的问题是,如果我们更改选项卡,它将自动扩展所有行,回来 。怎么了? enter image description here

这将在第一次正确显示 然后

enter image description here

它将展开所有行

enter image description here

链接:StackBlitz sample

1 个答案:

答案 0 :(得分:0)

好的,这是因为,我必须将mat-tab内容包裹起来

<ng-template matTabContent> //your content goes here </ng-template>

这是一个可行的解决方案:https://stackblitz.com/edit/angular-yeveze?file=src/app/table-expandable-rows-example.html