New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnClientSlideEnd

The OnClientSlideEnd client-side event occurs as the drag handle stops moving along the track.

The event handler receives parameters:

  1. The slider instance that fired the event.

  2. Event arguments. The parameter has no methods for this event.

The example below displays the value of the slider as the drag handle stops moving.

<script type="text/javascript">
    function clientSlideEnd(sender, eventArgs)
    {
        alert('Value before the slide starts is: ' + sender.get_value());
    }
</script>
<telerik:radslider id="RadSlider1" runat="server" onclientslideend="clientSlideEnd" />
In this article