Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Rotator > Slowing the RadRotator on mouseover instead of stopping it
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Answered Slowing the RadRotator on mouseover instead of stopping it

Feed from this thread
  • Vedanshu avatar

    Posted on Jan 30, 2008 (permalink)

    Hi ,

    I am using the RadRotator control within a web part to display a list of values. Is it possible to slow down the scroll  instead of stopping it when mouse hovers over an item. 

    Thanks
    Vedanshu 

  • Answer Peter Peter admin's avatar

    Posted on Jan 30, 2008 (permalink)

    Hello Vedanshu,

    Unfortunately, this functionality is not supported by RadRotator.


    Regards,
    Peter
    the Telerik team

    Instantly find answers to your questions at the new Telerik Support Center

  • Russ avatar

    Posted on Apr 15, 2011 (permalink)

    What about ignoring the mouseover completely?  Currently, when I mouse over my rotator (which is a fairly large at 749x235) I lose the ability to scroll down. The problem with this is that my rotator is at the top of my page and I find myself constantly trying to scroll down to see other content on my page...but my cursor is almost always getting stuck on top of the rotator so my scrolling doesn't work. I have seen many shopping sites out there with rotators and none of them disable the scroll ability on mouse-over; can I get the RadRotator to function like them (without disabling the scroll)?

    Thanks,
    Russ

  • Niko Niko admin's avatar

    Posted on Apr 18, 2011 (permalink)

    Hi Russ,

    The scrolling in the RadRotator is disabled only for Webkit based browsers and the reason for that is the incorrect behavior of their render engines when scrolling on top of the rotator. To prevent this bug from occurring a special case was developed to disable the mousewheel event.
    Still if you wish to overwrite this behavior (I wouldn't recommend it though) you could execute this code within the OnClientLoad event of the rotator:
    function removeMouseWheelHandler(rotator, args)
    {
        try
        {
            $removeHandler(rotator._relativeWrapper, "mousewheel", rotator._mouseWheelHandler);
        }
        catch(e){}
    }

    On a different topic, please, avoid opening old forum threads when the issue you are experiencing is not related to the discussion. Otherwise other members may get confused.

    Best wishes,
    Niko
    the Telerik team

    Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Rotator > Slowing the RadRotator on mouseover instead of stopping it