R/input-noUiSlider.R
updateNoUiSliderInput.RdChange the value of a no ui slider input on the client
updateNoUiSliderInput(
session = getDefaultReactiveDomain(),
inputId,
label = NULL,
value = NULL,
range = NULL,
disable = NULL,
disableHandlers = NULL,
enableHandlers = NULL
)The session object passed to function given to shinyServer.
The id of the input object.
The new label.
The new value.
The new range, must be of length 2 with c(min, max).
logical, disable or not the slider, if disabled the user can no longer modify the slider value.
Enable or disable specific handlers, use a numeric indicating the position of the handler.
if (interactive()) {
demoNoUiSlider("update")
}