Programatically moving a slider handle with a multi-handle slider.
Hey all. I'm using the jQuery UI Slider control in my ASP.NET app and I have the slider working and it's updating values in a masked text box. When the user changes a value in the masked text box I want to reposition the corresponding handle if the validation passes. (Validation checks to make sure the value is either less than or equal to another value).
The problem is I can't reposition the handle. I tried the following...
- Slider('option', 'value', ticks)
...where ticks is the value I want to use to reposition the handle with, but it's not working. I suspect its because the slider has multiple handles.
How would I fix this? Thanks in advance.