updateNoUiSliderInput {shinyWidgets} | R Documentation |
Change the value of a no ui slider input on the client
updateNoUiSliderInput(
session,
inputId,
value = NULL,
range = NULL,
disable = FALSE
)
session |
The |
inputId |
The id of the input object. |
value |
The new value. |
range |
The new range, must be of length 2 with |
disable |
logical, disable or not the slider, if disabled the user can no longer modify the slider value |
if (interactive()) {
demoNoUiSlider("update")
}