如何在Angular材质菜单中动态地将matMenuTriggerFor附加到DOM元素?

时间:2018-04-25 11:10:23

标签: angular material-design

在Angular表中添加Angular材质菜单时,我遇到性能问题。具有数千行的Angular材料表创建了数千个mat菜单组件。由于此页面加载时间过长。

这是我的示例代码。

    <table>
      <tr *ngFor="let el of [1,2,3,4,5]">
        <td>Text line of menu {{el}}</td>
        <td style="width: 5%">
        <button mat-icon-button [matMenuTriggerFor]="abc.menu" class="center-block">
            <i class="material-icons">more_vert</i>
        </button>

        <app-desposition #abc="menuComponent" [user]="row.policyObj"></app-desposition>
        </td>
  </tr>
</table>

<app-desposition>是带有菜单模板的其他Angular组件。

这是<app-desposition>

的模板
<mat-menu #menu="matMenu" class="d-menu-container">

  <div class="desposition-menu">

    <div (click)="$event.stopPropagation()">
          <mat-input-container class="col-md-12">
              <textarea [(ngModel)]="message" matInput id="message" name="body" rows="2" placeholder="Click here to write comment"></textarea>
          </mat-input-container>
      </div>

    <mat-radio-group [(ngModel)]="selectedDesposition" (click)="$event.stopPropagation()">   

      <div mat-menu-item *ngFor="let menu of menuItems">
        <mat-radio-button class="radioText" [value]="menu.getName()">
          <span class="wrap-mat-radio-label" style="font-style:unset; font-size: 12px">{{menu.getName()}}</span>
        </mat-radio-button> 
      </div>
    </mat-radio-group>
  </div>

  <div mat-menu-item (click)="$event.stopPropagation()">
      <span *ngIf="uiStatus.getSuccess() else uiElse" style="text-color:green">{{uiStatus.getMessage()}}</span>

      <ng-template #uiElse><span style="text-color:red">{{uiStatus.getMessage()}}</span></ng-template>
  </div>

  <div mat-menu-item  (click)="$event.stopPropagation()">
    <button  mat-raised-button color="warn" style="width:100%"  (click)="onSelect()">
      SAVE
    </button>  
  </div>

</mat-menu>

我希望动态创建沉积组件(我可以这样做),但是,我不知道如何将[matMenuTriggerFor]附加到动态创建的组件内部的菜单。

请有人帮忙吗?

供参考@jpavel在stackbliz上做了类似于我的事情。这是链接。 Angular Material 2 MatMenu - Dynamically creation

1 个答案:

答案 0 :(得分:0)