0
  • A demo is there to get the slider value in textbox.
  • Is it possible to get the slider adjusted after giving some value into the textbox.
  • I should move the slider by textbox value not using mouse.

    the below link has slider value in textbox. vice cersa is possible? if so can i have the code? Programmatic example of a horizontal slider

Rachel
  • 1,131
  • 11
  • 26
  • 43

1 Answers1

1

You can set the value of the slider by calling the set method:

var slider = new HorizontalSlider(...);
    slider.set('value', 2);
Lucian Depold
  • 1,999
  • 2
  • 14
  • 25
  • can you check this link please.. http://stackoverflow.com/questions/15826506/set-dojox-grid-datagrid-header-column-width-dynamically – Rachel Apr 05 '13 at 05:23