I have created the HorizontalRangeSlider like this,
this.horizontalSlider = new HorizontalRangeSlider({
name : "slider",
//To place the slider handles at min max.
value : [10,100],
minimum : 10,
maximum : 100,
intermediateChanges : false,
showButtons : false,
onChange : //onChange call method.
}, this.slider);
this.horizontalSlider.startup();
this.horizontalSliderRule = new HorizontalRule({
container : "topDecoration",
style:"height:5px",
count : 2,
numericMargin: 1
}, this.sliderRule);
this.horizontalSliderRule.startup();
Then after changing the position of the slider handles now i want to reset the position of the slider handles programmatically, for this i am doing like this
this.horizontalSlider.value=[10,100];
But this is not affecting anything in the slider.How to reset the position of the slider?