I have a data table using angular material, i want a additional row, that row contains some filters like search, dropdown, filters.
is that any possible to create a 2nd row???
here is my sample code,
<mat-table #table [dataSource]="dataSource" matSort class="mat-tableacc">
<ng-container matColumnDef="position">
<mat-header-cell *matHeaderCellDef mat-sort-header> Job ID </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.position}} </mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>