// The client event TrackDoubleClick takes two parameters sender and e // sender is the object which is raising the event // e is the SliderTrackMouseEventArgs function WebSlider1_TrackDoubleClick(sender, e) { var slider = $find("WebSlider1"); //Gets the slider value var value = slider.getValue(0); //Gets percent between edge of track bar and location of mouse var percent = e.get_percent(); window.status = "After double clicking the track the value is " + value+ " and the percent is "+ percent +"%"; }
Me.WebSlider1.ClientEvents.TrackDoubleClick = "WebSlider1_TrackDoubleClick"
this.WebSlider1.ClientEvents.TrackDoubleClick = "WebSlider1_TrackDoubleClick";