I'm using Angular Material 7 tables (mat-table). What I want to achieve is a link for a whole row in order to show a detail page.
The requirement is to show a real link which can be opened in a new tab, so the usual (click)-event does not work.
I achieved to add a link around the content of every mat-cell, but as I have a lot of columns this is not a good solution.
Is there a nice way to convert every mat-row to a link (href)?
Edit: I removed my example as correct answer was given below.