Hello, I have a RadPanelBar that contains a RadPanelItem, similar to the configuration below. Both are assigned IDs with runat=server.
In my code-behind, I am trying to pass the RadPanelItem's clientID to the RadToolTipManager so that the Item will have a nice pretty tooltip on mouse over.
However, passing the RadPanelItem's clientID to the RadToolTipManager does not enable the tooltip -- I found out that the actual RadPanelItem's ClientID is not being assigned correctly -- it appears that the RadPanelItem's ClientID is the same as the RadPanelBar.
I think this may be a bug, since I am able to pass literally every other control's clientID to the RadTooltipManager successfully, and have the tooltip displayed correctly.
Please advise as to how I can pass the correct RadPanelItem.ClientID to the RadTooltipManager.
ascx code:
code behind (vb net)
In my code-behind, I am trying to pass the RadPanelItem's clientID to the RadToolTipManager so that the Item will have a nice pretty tooltip on mouse over.
However, passing the RadPanelItem's clientID to the RadToolTipManager does not enable the tooltip -- I found out that the actual RadPanelItem's ClientID is not being assigned correctly -- it appears that the RadPanelItem's ClientID is the same as the RadPanelBar.
I think this may be a bug, since I am able to pass literally every other control's clientID to the RadTooltipManager successfully, and have the tooltip displayed correctly.
Please advise as to how I can pass the correct RadPanelItem.ClientID to the RadTooltipManager.
ascx code:
<telerik:RadPanelBar width="100%" ID="rdpPanelBar" runat="server" ExpandMode="MultipleExpandedItems"> <Items> <telerik:RadPanelItem Text="Package" runat="server" Width=100% Value="PackageName" id="rdiPackage"> <ContentTemplate>... </ContentTemplate></Items> </telerik:RadPanelItem></telerik:RadPanelBar>code behind (vb net)
Dim item As RadPanelItem = rdpPanelBar.FindItemByValue("Package")Dim test = rdpPanelBarClientID & "|" & rdiPackage.ClientIDRadToolTipManager1.TargetControls.Add(rdiPackage.ClientID, True)RadToolTipManager1.Text = test