How to disable/enable the SliderControl?
To disable the SliderControl, we can call the following function to remove all the handlers on its handle. For more information about $clearHandler, please refer to this document: (http://www.asp.net/AJAX/Documentation/Live/ClientReference/Global/ClearHandlersShortcutMethod.aspx). function disableSlider() { $clearHandlers($find(‘Slider1’)._handle); $clearHandlers($find(‘Slider1’)._railElement); } To enable the SliderControl, we can use the following function to add all the handlers. For more information about $addHandler, please refer to this document: (http://www.asp.net/AJAX/Documentation/Live/ClientReference/Global/AddHandlersShortcutMethod.aspx). function enableSlider() { $addHandlers($find(‘Slider1’)._handle, { ‘mousedown’: $find(‘Slider1’)._onMouseDown, ‘dragstart’: $find(‘Slider1’)._IEDragDropHandler, ‘drag’: $find(‘Slider1’)._IEDragDropHandler, ‘dragend’: $find(‘Slider1’)._IEDragDropHandler },$find(‘Slider1’)); $addHandlers($find(‘Slider1’)._railElement, { ‘click’: $find(‘Slide