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

Office2007 Callout Not Showing

5 Answers 65 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
airedale
Top achievements
Rank 1
airedale asked on 18 Apr 2008, 01:22 AM

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

Sort by
0
Martin
Telerik team
answered on 22 Apr 2008, 05:22 AM
Hi airedale,

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
0
airedale
Top achievements
Rank 1
answered on 22 Apr 2008, 06:52 AM

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>

0
Accepted
Martin
Telerik team
answered on 24 Apr 2008, 10:08 AM
Hi airedale,

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
0
rdochert
Top achievements
Rank 1
answered on 29 Sep 2008, 10:40 PM
Is this really Telerik's solution to this issue? i have the same problem. in fact, i checked the online demos and the problem is there too! isnt there a fix needed to the toolset?
cheers,
rob
0
Martin
Telerik team
answered on 30 Sep 2008, 12:09 PM
Hi 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.
Tags
ToolTip
Asked by
airedale
Top achievements
Rank 1
Answers by
Martin
Telerik team
airedale
Top achievements
Rank 1
rdochert
Top achievements
Rank 1
Share this question
or