Completed
Last Updated: 23 Jun 2014 14:13 by ADMIN
ADMIN
Slav
Created on: 14 Jun 2013 16:07
Category: Rotator
Type: Bug Report
3
Problem with the automatic scrolling of RadRotator when PauseOnMouseOver is set to true
If a RadRotator is set in AutomaticAdvance mode and its property PauseOnMouseOver is set to true, it will start scrolling incorrectly when the cursor is moved over the items in the scroll direction before the scrolling is completed.
6 comments
ADMIN
Joana
Posted on: 23 Jun 2014 14:13
This issue will be fixed in Q2 2014 SP1
Matt
Posted on: 07 May 2014 00:38
Great! Thanks Sam
Sam
Posted on: 06 May 2014 12:31
Matt, you just need to start and stop the rotation manually. It sucks but at least it doesn't get stuck mid-scroll. 

    <script type="text/javascript">
        function StartRotation(rotator, args) {
            if (!rotator.autoIntervalID) {
                rotator.autoIntervalID = window.setInterval(function () {
                    rotator.showNext(Telerik.Web.UI.RotatorScrollDirection.Left);
                }, rotator.get_frameDuration());
            }
        }

        function StopRotation(rotator, args) {
            window.clearInterval(rotator.autoIntervalID);
            rotator.autoIntervalID = null;
        }

        function StartStopRotation(rotator, args) {
            StopRotation(rotator, args);
            StartRotation(rotator, args);
        }
    </script>

        <telerik:RadRotator ID="rotPostings" runat="server" Width="840" Height="65" ItemWidth="200" ItemHeight="65" ScrollDuration="2000" 
            RotatorType="Buttons" PauseOnMouseOver="false" BorderStyle="None" FrameDuration="5000"
            OnClientLoad="StartRotation" OnClientMouseOver="StopRotation" OnClientMouseOut="StartRotation">
            <ControlButtons OnClientButtonClick="StartStopRotation" />
            <ItemTemplate>...
Sam
Posted on: 06 May 2014 00:52
Matt, the Java script solution in the forums actually works pretty well. I'll post the link or the code I use tomorrow morning if you can't find it. 
Matt
Posted on: 05 May 2014 23:26
Any updates on this? It's a great control but looks horrible when it gets stuck mid-scroll.
Sam
Posted on: 05 Dec 2013 13:28
Any idea when this might be fixed? I really like the rotator but it is almost unusable on any UI that requires the user to select anything in the rotator.