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
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"> <html xmlns="http://www.w3.org/1999/xhtml"> <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>