I am using Angular Material in a project, do you know if it is possible to define manually a row inside a mat-table? The idea is to add a row containing only inputs to filter the columns directly in the database (not using the filtering options of mat-table).
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr> <!-- this new row -->
<td><input ...></td>
<td><input ...></td>
...
</tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
Thanks for your responses.