AJAX Slider Control Extender - Capture Change Event?

  • Thread starter Thread starter Mel
  • Start date Start date
M

Mel

Anyone know how to capture an event when the slider changes? Is this
possible with this control or is there a different control I should
consider instead? I want to use a slider to allow the user to rotate
an object on the screen from 0 to 360 degrees. Upon changing the
slider the object would rotate.

(using Asp.net 2.0, visual studio 2005, vb.net, WinXP Pro SP2)
 
simple:

$find("mySlider").add_valueChanged(function(slider,attr)
{
// handler code here
alert(slider.get_Value());
});

-- bruce (sqlwork.com)
 
Back
Top