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

Chrome & Safari MouseWheel Scrolling Needed

3 Answers 26 Views
Rotator
This is a migrated thread and some comments may be shown as answers.
Trevor
Top achievements
Rank 1
Trevor asked on 14 Oct 2013, 09:05 PM
Hi There,

I notice that the scrolling for chrome and safari are disabled for some reason.
Where and How can I enable scrolling?

It's required for the current application I'm working on.
See the following URL for a video of the issue.

http://screencast.com/t/0284q680H0cj

Thank you for the help.

3 Answers, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 17 Oct 2013, 11:47 AM
Hi Trevor,

The mentioned problem was fixed in the Q1 2012 SP1 release of RadControls for ASP.NET AJAX. Please upgrade to the latest version and check this scenario again.

If the problem persists, send a simple, fully runnable project that isolates your setup so that I can inspect it locally and provide an according solution.

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.
0
Trevor
Top achievements
Rank 1
answered on 17 Oct 2013, 07:11 PM
Hi Slav,

How can I download the updated without having to pay the $999 license fee?
It would be a hard sell to management to pay a thousand dollars to fix a known bug in something that we already purchased in the past.

Please advise...
Best Regards,
-Trevor
0
Slav
Telerik team
answered on 18 Oct 2013, 12:55 PM
Hi Trevor,

You can download the trial version of the latest release of RadControls for ASP.NET AJAX. Another option is to add the following override at the end of your page:
<script type="text/javascript">
    Telerik.Web.UI.RadRotator.prototype._mouseWheelHandler = function (e) {
        e.preventDefault();
        var delta = event.wheelDelta;
        yDirection = (delta < 0) ? 1 : -1;
        window.scrollBy(0, yDirection * 100);
    }
</script>

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
Trevor
Top achievements
Rank 1
Answers by
Slav
Telerik team
Trevor
Top achievements
Rank 1
Share this question
or