selectInput(inputId, label, choices, selected = NULL, multiple = FALSE, selectize = TRUE, width = NULL)
selectizeInput(inputId, ..., options = NULL, width = NULL)
NULL
multiple = TRUE
). If not specified then defaults to the first value
for single-select lists and no values for multiple select lists.'400px'
, or '100%'
;
see validateCssUnit
.selectInput()
.I()
will
be treated as literal JavaScript code; see renderDataTable()
for details).selectInput()
and selectizeInput()
use the
JavaScript library selectize.js (https://github.com/brianreavis/selectize.js)
to instead of the basic select input element. To use the standard HTML select
input element, use selectInput()
with selectize=FALSE
.
updateSelectInput
Other input.elements: animationOptions
,
sliderInput
;
checkboxGroupInput
;
checkboxInput
; dateInput
;
dateRangeInput
; numericInput
;
radioButtons
; submitButton
;
textInput
selectInput("variable", "Variable:",
c("Cylinders" = "cyl",
"Transmission" = "am",
"Gears" = "gear"))
Run the code above in your browser using DataLab