44
Views
7
Comments
Solved
How to show hover text when pointing cursor on a entire table row
Question
Application Type
Reactive

When hovering a table row I want to show text as an example "Hello" 

Like if condition met (GetRecord.List.Current.IsEligible = true) then on hovering on row 1 anywhere as an example show text "Hello"

2026-01-28 16-57-48
Mihai Melencu
Champion
Solution

Hi @Touseef Ahmed ,

You can use the title property to add a tooltip to each cell. When applied to a table tag, the title attribute displays a tooltip containing the specified text.

To apply this property conditionally, use an If statement to determine when the tooltip should be visible:

I also attached OML for you to check.

TableHover.oml
UserImage.jpg
Touseef Ahmed

Hi @Mihai Melencu  Yes this works. Thank you so much. :)

2026-02-16 05-51-10
Sahana K
Solution

Hi,
Add an attribute "title " with "Hello" only if IsEligible = True: 
If(GetRecord.List.Current.IsEligible, "Hello", "")
When you hover over a row and the condition is met (IsEligible = True), it will show "Hello".
If IsEligible = False, no tooltip will be displayed.

Thanks,
Sahana

2023-08-29 05-15-27
Navdeep Gupta

Hi Touseef,
Please follow below steps.

  • Drag a Tooltip widget inside the row.
  • Set Text = "Hello"
  • Bind Visible = GetRecord.List.Current.IsEligible
  • Set Trigger = "Hover"
2026-02-16 05-51-10
Sahana K

Hi,
Add a CSS class to the row (TableRow) and set the title attribute dynamically based on IsEligible 

.tooltip-row[title] {

    position: relative;

    cursor: pointer;

}


.tooltip-row[title]:hover::after {

    content: attr(title);

    position: absolute;

    background-color: black;

    color: white;

    padding: 5px;

    border-radius: 5px;

    white-space: nowrap;

    bottom: 100%;

    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

}

Thanks,
Sahana

UserImage.jpg
Touseef Ahmed

Hi Sahana,


can you make a sample oml.

2026-02-16 05-51-10
Sahana K
Solution

Hi,
Add an attribute "title " with "Hello" only if IsEligible = True: 
If(GetRecord.List.Current.IsEligible, "Hello", "")
When you hover over a row and the condition is met (IsEligible = True), it will show "Hello".
If IsEligible = False, no tooltip will be displayed.

Thanks,
Sahana

UserImage.jpg
Touseef Ahmed

Hi @Sahana K Yes this also works. Thank you so much. :)

2026-01-28 16-57-48
Mihai Melencu
Champion
Solution

Hi @Touseef Ahmed ,

You can use the title property to add a tooltip to each cell. When applied to a table tag, the title attribute displays a tooltip containing the specified text.

To apply this property conditionally, use an If statement to determine when the tooltip should be visible:

I also attached OML for you to check.

TableHover.oml
UserImage.jpg
Touseef Ahmed

Hi @Mihai Melencu  Yes this works. Thank you so much. :)

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