Unplanned
Last Updated: 18 Jun 2020 15:55 by ADMIN
ADMIN
Peter Milchev
Created on: 28 Jun 2018 13:26
Category: Slider
Type: Feature Request
0
Improve Slider behavior on mobile devices
When scrolling the page and the finger is on the slider, the slider value changes.

The following code prevents the scrolling when you scroll from the slider.

function pageLoadHandler() {
    $telerik.$(".RadSlider").on('touchstart', function (e) {
        e.preventDefault();
    });
}
Sys.Application.add_load(pageLoadHandler);
0 comments