Hi,
I have this almost working perfect.
I have a grid with a GridButtonColumn.
When the user hovers over this GridButtonColumn the tooltip popups up with LoadOnDemand information taken from a ProductID field in the grid.
This is all great... however !
The grid is pager style and when i select page 2 and hover over the 1st row.. it shows the information for the 1st row in page 1 ????
My code for adding controlID to the RadToolTipManager is below...
(Cell 4 is the column i hover over)
Any ideas please ?
Thanks
Mark
I have this almost working perfect.
I have a grid with a GridButtonColumn.
When the user hovers over this GridButtonColumn the tooltip popups up with LoadOnDemand information taken from a ProductID field in the grid.
This is all great... however !
The grid is pager style and when i select page 2 and hover over the 1st row.. it shows the information for the 1st row in page 1 ????
My code for adding controlID to the RadToolTipManager is below...
(Cell 4 is the column i hover over)
Any ideas please ?
Thanks
Mark
Protected
Sub grdProduct_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles grdProduct.ItemDataBound
If TypeOf e.Item Is GridDataItem Then
Dim item As GridDataItem = e.Item
RadToolTipManager1.TargetControls.Add(e.Item.Cells(4).ClientID, item.GetDataKeyValue(
"ProductID").ToString, True)
End If
End
Sub