optionalSliderInputValMinMax {teal.widgets} | R Documentation |
teal
modules we parameterize an optionalSliderInput
with one argument
value_min_max
The
optionalSliderInput()
function needs three arguments to determine
whether to hide the sliderInput
widget or not. For teal
modules we specify an
optional slider input with one argument here called value_min_max
.
optionalSliderInputValMinMax(
inputId,
label,
value_min_max,
label_help = NULL,
...
)
inputId |
The |
label |
Display label for the control, or |
value_min_max |
( |
label_help |
( |
... |
optional arguments to |
(shiny.tag
) HTML tag with range sliderInput
widget.
optionalSliderInputValMinMax("a", "b", 1)
optionalSliderInputValMinMax("a", "b", c(3, 1, 5))