Hi Guy’s,
Under 2008.1.415.35 when selecting the ToolTip skin “Office2007” the Callout is not being shown.
Other skins seem to be ok
<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Skin="Office2007"
Animation="None" Position="BottomRight" RelativeTo="Mouse" ShowCallout="true">
</telerik:RadToolTipManager>
Any ideas
5 Answers, 1 is accepted
Please, try to set the following setting of the callout in the <head> section of your webpage:
.ToolTipCallout.TopLeft
{
display: block !important;
}
If this does not work, please, send me a small running project and I will do my best to help.
Best wishes,
Martin Ivanov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Hi Martin,
Have included the following simple example to see if you can tell me where I've gone wrong?
Thanks
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="WebForm1.aspx.vb" Inherits="wms.WebForm1" %>
<%
@ 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>Untitled Page</title>
<style type="text/css">
.ToolTipCallout.TopLeft {display: block !important;}
</style>
</
head>
<
body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Skin="Office2007"
CssClass="ToolTipCallout TopLeft" Position="TopLeft">
</telerik:RadToolTipManager>
<div>
<asp:Button ID="Button1" runat="server" Text="Button" ToolTip="Tooltip for Button1" />
</div>
</form>
</
body>
</
html>
Thank you for emailing me your code. What you have to do is to add the following CSS into the head of your webpage:
.ToolTipCallout.BottomRight
{
display: block !important;
}
Do not add any CssClass to the tooltip server tag itself.
Sincerely yours,
Martin Ivanov
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
cheers,
rob
This issue is already fixed and will be available with the upcoming service pack.
Regards,
Martin Ivanov
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.