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

RadTooltipManager doesn't work

2 Answers 65 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Ubaldo
Top achievements
Rank 1
Ubaldo asked on 12 Apr 2011, 04:52 PM
Hi there, I'm rehearsing with AJAX controls, following your CourseWare.
It seems that RadTooltipManager doesn't work...
The tooltips linked to the tblOptions table are displsyed with standard format, while to one created with RadTooltip works correctly
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="05-UI_1.aspx.vb" Inherits="AjaxProva1._05_UI_1" %>
  
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
  <title>AJAX / UI Getting started</title>
</head>
<body>
  <form id="form1" runat="server">
  <div>
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" Skin="Hay" />
    <table id="tblOptions" style="width: 100%;">
      <tr>
        <td style="color: #808000; border-right-style: solid; border-width: thin; border-color: #808000">
          Music Styles
        </td>
        <td style="color: #808000">
          Media
        </td>
      </tr>
      <tr>
        <td colspan="2">
          <hr />
        </td>
      </tr>
      <tr>
        <td style="border-right-style: solid; border-width: thin; border-color: #808000"
          title="Check all the styles you want to see included in the listing." valign="top">
          <asp:CheckBox ID="CheckBox1" runat="server" Text="Classical" />
          <br />
          <asp:CheckBox ID="CheckBox2" runat="server" Text="Classic Rock" />
          <br />
          <asp:CheckBox ID="CheckBox3" runat="server" Text="Jazz and Fusion" />
          <br />
          <asp:CheckBox ID="CheckBox4" runat="server" Text="Rhythm and Blues" />
        </td>
        <td title="Choose the media you want." valign="top">
          <asp:RadioButtonList ID="RadioButtonList1" runat="server">
            <asp:ListItem Selected="True">CD</asp:ListItem>
            <asp:ListItem>Tape</asp:ListItem>
          </asp:RadioButtonList>
        </td>
      </tr>
    </table>
    <asp:Button ID="Button1" runat="server" Text="See Listing" />
    <telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Animation="FlyIn"
      Skin="Hay" ToolTipZoneID="tblOptions">
    </telerik:RadToolTipManager>
    <telerik:RadToolTip ID="RadToolTip1" runat="server" ManualClose="True" Position="BottomRight"
      RelativeTo="Element" Skin="Hay" TargetControlID="Button1" Title="See Listings">
      <asp:Image ID="Image1" runat="server" ImageUrl="~/Images/music.png" />
      Click this button to view the listings in our catalog for all the types of music
      you have selected.
    </telerik:RadToolTip>
  </div>
  </form>
</body>
</html>

2 Answers, 1 is accepted

Sort by
0
Accepted
Dean
Top achievements
Rank 2
answered on 12 Apr 2011, 09:01 PM
Hi Ubaldo,

Please can you update your RadToolTipManager Control and set the following property I've highlighted. It should then work as expected.

<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Animation="FlyIn"
    Skin="Hay" ToolTipZoneID="tblOptions" AutoTooltipify="True">

Enjoy the rest of your day.
0
Dean
Top achievements
Rank 2
answered on 14 Apr 2011, 05:58 AM
Please mark thread as answered if this has helped you. It will allow others to see if it has been solved.
Tags
ToolTip
Asked by
Ubaldo
Top achievements
Rank 1
Answers by
Dean
Top achievements
Rank 2
Share this question
or