Completed
Last Updated: 22 Jun 2022 12:31 by ADMIN
  <telerik:RadSlider ID="RadSlider_Ticks" runat="server" MinimumValue="0" MaximumValue="5"
                                        SmallChange="1" LargeChange="1" ItemType="tick" Height="40px" Width="400px" TrackPosition="TopLeft"
                                        AnimationDuration="400" ThumbsInteractionMode="Free" AutoPostBack="True"
                                         Skin="Metro"      RenderMode="Classic"  >
                                    </telerik:RadSlider>
Unplanned
Last Updated: 18 Jun 2020 15:55 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: Slider
Type: Feature Request
0
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);
1 2