...
Field Binding Dialog (Rich UI Only)
Please visit the Field Binding page.
Slider Widget Properties
...
A quick way to show a value alongside the slider widget itself is quite easy. Using a couple of our commonly used APIs you can have a textbox/output field display the slider's selected value.
...
Then add the following JavaScript code to the widget's onchange event:
Code Block |
---|
changeElementValue("TextBox1", get("Slider1"));
|
...