rangeSlider.setValue not setting values

I'm having some challenges getting the rangeSlider.setValue to work - no errors, it just doesnt set.

I'm triggering through the onclick even on a reset button. All other inputs reset appropriately. The slider just does nothing. Viewing state, there's no change.

msrpRangeSlider.setValue(0,10);

min and max is set appropriately - 0 and 100 respectively.

Hello,

try this:

msrpRangeSlider.setValue({start: 0, end: 10 })
1 Like

That did the trick - thank you @Rati_Bakhtadze

2 Likes