Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to include or exclude an attribute from the HTML in Angular 4

I am using angular 4 with angular materials to construct a table. I want the mat-sort-header to be added conditionally on the following template.

<mat-header-cell *matHeaderCellDef mat-sort-header>Id</mat-header-cell>

I have tried the following code:

<mat-header-cell *matHeaderCellDef [mat-sort-header]=" column!='id' ? column : false ">Id</mat-header-cell>

But it still adds the sorting header in the table for this column.

My overall table looks as follows, and is working fine, except for the sorting header issue:

  <mat-table #table1 [dataSource]="records" matSort class="mat-cell">

    <ng-container *ngFor="let column of keys" [matColumnDef]="column">
      <mat-header-cell *matHeaderCellDef [mat-sort-header]=" column!='actions' ? column : false ">
        <p *ngIf=" column!='actions' ">{{ column }}</p>
        <button *ngIf=" column=='actions' " mat-icon-button color="primary" (click)="functionA()">
          <mat-icon class="indigo-icon" aria-label="Example icon-button with a heart icon">add</mat-icon>
        </button>

      </mat-header-cell>
      <mat-cell *matCellDef="let row; let i=index;">
        <p *ngIf=" column!='actions' ">{{ row[column] }}</p>
        <button *ngIf=" column=='actions' " mat-icon-button color="accent" (click)="functionA()">
          <mat-icon class="indigo-icon" aria-label="Edit">edit</mat-icon>
        </button>

        <button *ngIf=" column=='actions' " mat-icon-button color="accent" (click)="functionA()">
          <mat-icon class="indigo-icon" aria-label="Delete">delete</mat-icon>
        </button>

      </mat-cell>
    </ng-container>

    <mat-header-row *matHeaderRowDef="keys"></mat-header-row>
    <mat-row *matRowDef="let row; columns: keys;"></mat-row>
  </mat-table>
like image 874
CoderX Avatar asked Feb 15 '18 07:02

CoderX


2 Answers

Well, I solved it as follow:

<mat-header-cell *matHeaderCellDef [mat-sort-header]=" column!='actions' ? column : null " [disabled]=" column=='actions' ? true : false " >

Needed to bind the disabled property.

like image 105
CoderX Avatar answered Nov 16 '22 02:11

CoderX


CoderX's answer is the best approach for your question. but there might come a scenario where you need to render a separate template based on condition. In such a case you can do it like below:

<ng-container *ngIf="columnAction=='sort'; else noSort">
  <mat-header-cell *matHeaderCellDef mat-sort-header />          
</ng-container>

<ng-template #noSort>
  <mat-header-cell *matHeaderCellDef />         
</ng-template>
like image 38
Jake Avatar answered Nov 16 '22 01:11

Jake