| optionalSliderInputValMinMax {teal.widgets} | R Documentation |
For teal modules we parameterize an optionalSliderInput with one argument
value_min_max
Description
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.
Usage
optionalSliderInputValMinMax(
inputId,
label,
value_min_max,
label_help = NULL,
...
)
Arguments
inputId |
The |
label |
Display label for the control, or |
value_min_max |
( |
label_help |
( |
... |
optional arguments to |
Value
(shiny.tag) HTML tag with range sliderInput widget.
Examples
optionalSliderInputValMinMax("a", "b", 1)
optionalSliderInputValMinMax("a", "b", c(3, 1, 5))
[Package teal.widgets version 0.4.2 Index]