Version

TrackMouseDown Property

Gets sets name of javascript function which is called before mousedown event over track html element.
Syntax
'Declaration
 
Public Property TrackMouseDown As String
public string TrackMouseDown {get; set;}
Example
// The client event TrackMouseDown takes two parameters sender and e
// sender  is the object which is raising the event
// e is the SliderTrackMouseEventArgs

 function WebSlider1_TrackMouseDown(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();

 }
Me.WebSlider1.ClientEvents.TrackMouseDown = "WebSlider1_TrackMouseDown"
this.WebSlider1.ClientEvents.TrackMouseDown = "WebSlider1_TrackMouseDown";
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also