I have a RadioButtonList like this:
<asp:RadioButtonList ID="myRbl" runat="server" AutoPostBack="true">
<asp:ListItem Selected="True" Value="0">Option 0</asp:ListItem>
<asp:ListItem Value="1">Option 1</asp:ListItem>
<asp:ListItem Value="2">Option 2</asp:ListItem>
</asp:RadioButtonList>
and a ToolTipManger:
Dim controlClientID As String = myRbl.ClientID
DirectCast(Page.Master.FindControl("RadToolTipManager1"), RadToolTipManager).TargetControls.Add(controlClientID, True)
I don't know how to add a tooltip for each listed item in my RadioButtonList .
If I do something like listItemOpen.Attributes.Add("title", "Option 0") it does add a tool tip to the listed item and it doesn't work with the tooltipmanager. It work only with a tool tip at the button level.