You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 20, 2023. It is now read-only.
I'm creating table rows in with an *ngFor. For certain students I would like to show an icon that shows a material-tooltip-card when hovered over it. Is there a way I can dynamically change #ref1?
I'm creating table rows in with an *ngFor. For certain students I would like to show an icon that shows a material-tooltip-card when hovered over it. Is there a way I can dynamically change #ref1?
`<tr *ngFor="let student of course.students ;[routerLink]="studentUrl(student.externeDatenbankID.toString())">
`<td *ngIf="hasWarning">
<div *ngIf="student.spezialfallProtokolle.length>0">
<material-icon
icon="error_outline"
tooltipTarget
tabIndex="0"
keyboardOnlyFocusIndicator
size="medium"
#ref1="tooltipTarget">
<material-tooltip-card [for]="ref1" focusContents>
Content for {{student.name}}
Because all icons now have the same reference the tooltip-card flips between all instances when hovered over the icon.
The text was updated successfully, but these errors were encountered: