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

Extremely Fast Scrolling on Mouse Over

9 Answers 102 Views
Rotator
This is a migrated thread and some comments may be shown as answers.
David
Top achievements
Rank 1
David asked on 19 Sep 2008, 07:26 PM
I'm using a RadRotator control to display testimonials on our website, whenever anyone hovers over the control it begins scrolling through the items rapidly. I've tried setting the PauseOnMouseOver property and I've also tried setting the OnClientMouseOver property both to no avail. How can I fix this?

Thanks

9 Answers, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 22 Sep 2008, 12:51 PM
Hello David,
Unfortunately, the information you have provided is not enough for us to reproduce the problem. As you yourself can see, the rotator behaves as expected in our online examples. Could you please prepare and send us a simple running project, demonstrating the behavior you describe?

Best wishes,
Tsvetie
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
David
Top achievements
Rank 1
answered on 22 Sep 2008, 02:02 PM
We're using the following code for the rotator:

default.aspx:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="RotatorProblem._Default" %> 
<%@ 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></title
</head> 
<body> 
    <form id="MainForm" runat="server"
        <asp:ScriptManager ID="ScriptManager" runat="server" /> 
        <h3>Testimonials</h3> 
        <telerik:RadRotator ID="Testimonial" FrameDuration="5000" Skin="Default" runat="server" 
            RotatorType="SlideShow" RotatorTransitionEffect="Blinds" WrapFrames="True"  
            ItemWidth="243" Width="243" Height="250" ItemHeight="250"
            <ItemTemplate> 
                    <blockquote> 
                        <p>"<%#Container.DataItem("Text")%>"</p> 
                        <p><%#Container.DataItem("Author")%></p
                    </blockquote> 
            </ItemTemplate> 
        </telerik:RadRotator> 
    </form> 
</body> 
</html> 


default.aspx.vb:
Imports System.Data 
Imports System.Data.SqlClient 
 
Partial Public Class _Default 
    Inherits System.Web.UI.Page 
 
    Protected Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgs) Handles Me.Load 
        If Not IsPostBack Then 
            Dim da As New SqlDataAdapter("SELECT [Name] + ' - ' + [Location] AS [Author], [Text] FROM [Testimonials] WHERE LEN([Text]) BETWEEN 196 AND 384 AND (LEN([Name]) + LEN([Location])) BETWEEN 14 AND 24 AND LEN([Location]) <> 0 ORDER BY LEN([Text]) DESC", ConfigurationManager.ConnectionStrings("typefrag.com").ConnectionString) 
            Dim dt As New DataTable() 
 
            da.Fill(dt) 
 
            Testimonial.DataSource = dt.DefaultView() 
            Testimonial.DataBind() 
        End If 
    End Sub 
End Class 

0
Tsvetie
Telerik team
answered on 26 Sep 2008, 04:37 PM
Hi David,
Thank you for the provided code fragment. There is a known problem, similar to the one you describe, when you use RotatorType="SlideShow". The problem is that when you mouse-over the RadRotator while the animation is playing, the rotator items will scroll very fact. It is already on our TODO list and we will do our best to fix it as soon as possible.

Kind regards,
Tsvetie
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Chase Florell
Top achievements
Rank 1
answered on 27 Sep 2008, 05:17 AM
Just wanted to say that I just found this problem as well and am hoping for a quick fix... even a band-aid if possible.  This is a huge inconvenience for our clients.
0
Accepted
Georgi Tunev
Telerik team
answered on 30 Sep 2008, 05:05 AM
Hello Chase,

We are still working on that issue - once we have a solution, we will publish a hotfix right away.


Best wishes,
Georgi Tunev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Samantha
Top achievements
Rank 1
answered on 08 Jan 2009, 12:04 PM
Is there a fix for this yet?
0
Fiko
Telerik team
answered on 10 Jan 2009, 04:38 PM
Hi Samantha,

The good news is that the problem has already been fixed. Please upgrade to a recent version of the control (currently it is Q3 SP1) and you will not experience this problem any more.


Kind regards,
Fiko
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Sam
Top achievements
Rank 1
answered on 02 Dec 2013, 09:10 PM
Seems this is still an issue. The only way I was able to fix it was to disable the PauseOnMouseOver. Has anyone else had any issues like this?
0
Slav
Telerik team
answered on 05 Dec 2013, 12:31 PM
Hello Sam,

This is a known issue that is logged in our Feedback portal. You can use its item to track the status of the bug, vote for it and comment it.

Indeed, one of the workarounds for this problem is to disable the mentioned property. The other is to set the RotatorType property to FromCode in order to implement a custom automatic rotation, similar to the one that is shown in this Knowledge Base article, which would be paused and resumed by handling the client-side events of the rotator OnClientMouseOut and OnClientMouseOver.

Regards,
Slav
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Rotator
Asked by
David
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
David
Top achievements
Rank 1
Chase Florell
Top achievements
Rank 1
Georgi Tunev
Telerik team
Samantha
Top achievements
Rank 1
Fiko
Telerik team
Sam
Top achievements
Rank 1
Slav
Telerik team
Share this question
or