-
Hi, ` @* Actions *@
It looks like it is working fine, except that tooltip is visible only on buttons in first row of FluentDataGrid. FliuentTooltip.in.TemplateColumn.mp4 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You are giving each type of button the same id in every row. Then you are adding the tooltip to that id, so it will always point that same id (which are the buttons in the first row) To get a 'unique' id per button, you would need to do something like:
Where '{context.id}' is some unique per row value |
Beta Was this translation helpful? Give feedback.
You are giving each type of button the same id in every row. Then you are adding the tooltip to that id, so it will always point that same id (which are the buttons in the first row)
To get a 'unique' id per button, you would need to do something like:
Where '{context.id}' is some unique per row value