Limit sliderInput values range

Is there a way to fix the range of values a sliderInput can provide within a larger range of values?

sliderInput(inputId='foo', label='foo', min=1, max=100, step=1, value=c(1,10), dragRange=TRUE)

will provide a slider with values ranging from 1-100 and the initial range will be 1-10. But the user can change the range. Is it possible to fix that range so that the user can drag the range (of 10) anywhere between 1 and 100?

Thanks!

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.