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