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

AutoClose Tooltip

3 Answers 172 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
digitall
Top achievements
Rank 1
digitall asked on 23 Feb 2008, 03:27 AM
I am using the Tooltip control to show a popup of a larger version of an image on hover. I am trying to get the tooltip to stay up the entire time the mouse cursor is over the image (target control) and as soon as you move away it disappears. The problem I am having is when the mouse is on the target control, the tooltip disappears and re-appears constantly - almost with a "flashing" effect since it is on/off/on/off. As soon as I am not hovering any longer, the control works as I would expect. Any suggestions? Below is the markup on the aspx page, and the VB I am using in the code-behind.

Thanks in advance!

<telerik:RadToolTipManager ID="radToolTipManager" runat="server" Animation="Fade" ContentScrolling="None" ManualClose="false" HideDelay="0" AutoCloseDelay="1200" /> 


                    With Me.radToolTipManager 
                        .Modal = True 
                        .RelativeTo = Telerik.Web.UI.ToolTipRelativeDisplay.Mouse 
                        .Title = ProductName & " Detail Image" 
                        .Text = "<img src=""" & Me.ResolveClientUrl("~/images/dbimages/" & dr.Item("tname")) & " />" 
                        .TargetControls.Add(Me.im.ClientID, True
                        .Height = New Unit(dr.Item("imageheight") + 35, UnitType.Pixel) 
                        .Width = New Unit(dr.Item("imagewidth") + 35, UnitType.Pixel) 
                        '.ShowDelay = 0.5 
                        .Position = Telerik.Web.UI.ToolTipPosition.TopRight 
                        '.AutoCloseDelay = 5000 
                    End With 
 

3 Answers, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 25 Feb 2008, 04:24 PM
Hi Scott,

There was an issue with RadToolTip's quickly disappearance in some situations, especially when the mouse is moved very fast. Today we release a Service Pack and in it the RadToolTip's performance is improved. I recommend you to download this newest version of the control and test your project with it.

Unfortunately the provided code is not enough for us to find the reason of the problem that you report, but we suppose that it is not caused by the control but by the way of its usage.
We assume that your scenario is very similar to this demo. Please, check it, try to implement it and if you continue experiencing problems, send us a sample project. As soon as we receive it, we will do our best to help you.


Best wishes,
Svetlina
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Dave
Top achievements
Rank 1
answered on 06 Mar 2008, 10:05 PM
The performance of the Tooltip control doesn't appear to have been fixed by the latest release.  I am actually the programmer who discovered this bug.  I am still able to reproduce this issue even with the new release in place.  The tooltip should disappear immediately after the user mouses out.
0
Svetlina Anati
Telerik team
answered on 10 Mar 2008, 03:39 PM
Hi Dave,

I already answered your question and you can find the answer in this thread.


All the best,
Svetlina
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
ToolTip
Asked by
digitall
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Dave
Top achievements
Rank 1
Share this question
or