...
orientation -This property determines the orientation of the slider widget. This can be set to either a horizontal or vertical orientation.
minimum value - Sets the minimum value for the slider widget.This property may be bound. (Rich UI Only)
maximum value - Sets the maximum value for the slider widget. This property may be bound. (Rich UI Only)
...
Then add the following JavaScript code to the widget's onchange event:
Code Block |
---|
changeElementValue("TextBox1", get("Slider1"));
|
...