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);