84
Views
2
Comments
Tooltip to an entire row.
Question

Hello,

I have a question regarding the tooltip in Reactive.

I have a table with 5 different columns etc and in one of the columns i have an expression and when hovering over it i get the tooltip showing with more information about that expression.

But what i want is that the tooltip is covering that whole row so when hovering over that row it shows up, instead of it only showing when hovering over that specific expression.

Is there a way to do this with tooltip or should i use something else instead?

Thanks!

2018-10-29 08-31-03
João Marques
 
MVP

Hi Timmy M,


A table has rows (tr elements) and each row has cells (td elements). While you can extend the attributes of a cell, you can't do that for the rows via the properties pane.


Being that said, I think you have two ways of doing it:


1. Add the tooltip to every cell, like in the example below:


2. Another way is to use JavaScript to add the title attribute to a specific row (the tr element, which you can't edit its properties like you can with the cells).


Kind Regards,
João

UserImage.jpg
Timmy M

Thanks for your answer!

I thought of doing the first one you wrote before i made this post, but it did not seem right, but I'll do that then.

Have a great day.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.