This is a migrated thread and some comments may be shown as answers.

Is there any way to implement a ToolTipManager popup on a single RadGrid column?

2 Answers 72 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Boris
Top achievements
Rank 1
Boris asked on 12 Feb 2013, 09:44 PM
I've already successfully implemented a ToolTipManager popup on a RadGrid, based on your examples using the RadToolTipManager and a custom control.  (And the OnAjaxUpdate and OnClientHide events.)

The problem is that my current version pops up on the entire row.  

I need to limit the popup to a single column.

Is this possible?  Any way to detect which cell the mouse is over?

2 Answers, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 15 Feb 2013, 12:56 PM
Hi Boris,

The following code library shows how implement RadToolTopmanager on hover above one column in RadGrid.
Integrating RadTooltipManager with RadGrid

Thanks,
Shinu.
0
Boris
Top achievements
Rank 1
answered on 18 Feb 2013, 02:02 PM
Interesting.  I should mention that the literal example as stated does not work for me since I'm not using any template fields on this grid.  After a bit of trial and error I got this.  Thanks.

GridDataItem ditem = (GridDataItem)e.Item;
var l = (GridTableCell)ditem["Description"];
if (l != null)
{
   if (!IsTooltify(e.Item.ClientID))
        RadToolTipManager1.TargetControls.Add(l.ClientID, ditem["Id"].Text, true);
}

Tags
Grid
Asked by
Boris
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Boris
Top achievements
Rank 1
Share this question
or