I want to implement the radtooltip control into my project. For example:
http://www.telerik.com/demos/aspnet/prometheus/ToolTip/Examples/LoadOnDemand/DefaultCS.aspx
Also, I have an aspx page where all products are viewed through a repeater control, so I want to load the aspx page through the tooltip as when mouseisover on products menu in this link http://www.telerik.com/DEMOS/ASPNET/Prometheus/ToolTip/Examples/Default/DefaultCS.aspx#.
Do I use the RadTooltipmanager or tooltip??????????????
how can I download these libraries??? free????
Please a help .....
Thanks,
Ranine
4 Answers, 1 is accepted
In order to download the trial version of the Prometheus suite (the RadToolTip is part of the suite), you have to login with your Client.net account and navigate to My Licenses -> My Free Trials - please check the attached screenshot.
Best wishes,
Tsvetie
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Hello Tsvetie,
Thanks for your reply.
I am using the RadToolTip control this way, where it works when I am setting the labels controls within it, but it is not working for repeater controls??????? so how it works for labels/textbox web controls but not for repeater as I have to retrieve product information from database and arrange them in the repeater control?????? I made some test in the code downward...
Please a help...
Thanks Ranine,
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!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>products</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<span id="Tabs" style="padding-top: 2px;" onmouseover="">
<img src="#" id="tab1" alt="tab1" />
<img src="#" id="tab2" alt="tab2" />
<img src="#" id="tab3" alt="tab3" />
<img src="#" id="tab4" alt="tab4" />
<img src="#" id="tab5" alt="tab51" />
</span>
<asp:ScriptManager ID="ScriptManagers" runat="server" />
<telerik:RadToolTip ID="RadToolTip1" runat="server" TargetControlID="Tabs" IsClientID="true"
Sticky="true" RelativeTo="Element" Skin="Web20Green" Position="BottomLeft" ShowDelay="10"
OffsetX="-15" Animation="Resize">
<asp:Label ID="lbl" Text="sjjgkjkjk" runat="server"></asp:Label>
<asp:Repeater ID="repShoppingCart" runat="server">
<HeaderTemplate>
<table cellspacing="0" cellpadding="3" rules="all" border="0" class="cart" align="center"
width="70%">
<tr class="labelLists">
<th scope="col">
</th>
<th scope="col">
Name</th>
<th scope="col">
Qty</th>
<th align="right" scope="col">
Price</th>
<th scope="col">
</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>
<asp:TextBox ID="txtQuantity" runat="server" Columns="3" Text="total" Width="20px"></asp:TextBox>
</td>
<td align="right">
total
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
<tr class="labelLists">
<td scope="col">
</td>
<td scope="col" valign="middle">
Total</td>
<td scope="col" valign="middle">
<asp:ImageButton ID="btnTotal" runat="server" AlternateText="Calculate total" CausesValidation="false"
ImageUrl="~/Images/UI/btnUpdate.gif" EnableViewState="false" /></td>
<td align="right" valign="middle" scope="col">
total
</td>
<td scope="col">
</td>
</tr>
</table>
</FooterTemplate>
</asp:Repeater>
</telerik:RadToolTip>
</div>
</form>
</body>
</html>
Hello Tsvetie,
Thanks for your reply.
I am using the RadToolTip control this way, where it works when I am setting the labels controls within it, but it is not working for repeater controls??????? so how it works for labels/textbox web controls but not for repeater as I have to retrieve product information from database and arrange them in the repeater control?????? I made some test in the code downward...
Please a help...
Thanks Ranine,
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!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>products</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<span id="Tabs" style="padding-top: 2px;" onmouseover="">
<img src="#" id="tab1" alt="tab1" />
<img src="#" id="tab2" alt="tab2" />
<img src="#" id="tab3" alt="tab3" />
<img src="#" id="tab4" alt="tab4" />
<img src="#" id="tab5" alt="tab51" />
</span>
<asp:ScriptManager ID="ScriptManagers" runat="server" />
<telerik:RadToolTip ID="RadToolTip1" runat="server" TargetControlID="Tabs" IsClientID="true"
Sticky="true" RelativeTo="Element" Skin="Web20Green" Position="BottomLeft" ShowDelay="10"
OffsetX="-15" Animation="Resize">
<asp:Label ID="lbl" Text="sjjgkjkjk" runat="server"></asp:Label>
<asp:Repeater ID="repShoppingCart" runat="server">
<HeaderTemplate>
<table cellspacing="0" cellpadding="3" rules="all" border="0" class="cart" align="center"
width="70%">
<tr class="labelLists">
<th scope="col">
</th>
<th scope="col">
Name</th>
<th scope="col">
Qty</th>
<th align="right" scope="col">
Price</th>
<th scope="col">
</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>
<asp:TextBox ID="txtQuantity" runat="server" Columns="3" Text="total" Width="20px"></asp:TextBox>
</td>
<td align="right">
total
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
<tr class="labelLists">
<td scope="col">
</td>
<td scope="col" valign="middle">
Total</td>
<td scope="col" valign="middle">
<asp:ImageButton ID="btnTotal" runat="server" AlternateText="Calculate total" CausesValidation="false"
ImageUrl="~/Images/UI/btnUpdate.gif" EnableViewState="false" /></td>
<td align="right" valign="middle" scope="col">
total
</td>
<td scope="col">
</td>
</tr>
</table>
</FooterTemplate>
</asp:Repeater>
</telerik:RadToolTip>
</div>
</form>
</body>
</html>
I tried to reproduce the problem you describe, but to no avail. Could you please open a new support thread and send us a simple running project with which we can reproduce the problem?
Sincerely yours,
Tsvetie
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center