summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run-report/run-report.component.html
blob: 172d76d3134bfe2e08060ddf1fff24395f45331b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div class="stdForm">
  <div class="tab-content">
          <h1>Report Run</h1>
  </div>
<br/>
<br/>

</div>
<div class="app-data-table">
  <table mat-table class="full-width-table" matSort aria-label="Elements">
    <!-- Id Column -->
    <!-- <div *ngFor="let b of "> -->
      <div *ngFor="let keys of displayedColumns; let i = index">
        <ng-container matColumnDef="{{keys}}">
            <th mat-header-cell *matHeaderCellDef mat-sort-header >{{displayedColumnsArr[i].split(",")[0]}}</th>
            <td mat-cell *matCellDef="let row">{{row[keys]}}</td>
          </ng-container>
        </div>
       
  <!-- </div> -->
    <tr mat-header-row *matHeaderRowDef="displayedColumns" ></tr>
    <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
  </table>

  <mat-paginator #paginator
      [length]="dataSource?.data.length"
      [pageIndex]="0"
      [pageSize]="15"
      [pageSizeOptions]="[15, 25, 50, 100, 250]">
  </mat-paginator>
</div>