textInput(inputId, label, value = "")
|
Creates a text input box.
|
numericInput(inputId, label, value, min = NA, max = NA, step = NA)
|
Creates a numeric input box with optional min, max, and step.
|
sliderInput(inputId, label, min, max, value, step = NULL)
|
|
selectInput(inputId, label, choices, selected = NULL, multiple = FALSE)
|
Creates a dropdown select box.
|
radioButtons(inputId, label, choices, selected = NULL)
|
Creates a set of radio buttons.
|
checkboxGroupInput(inputId, label, choices, selected = NULL)
|
Creates a group of checkboxes.
|
checkboxInput(inputId, label, value = FALSE)
|
Creates a single checkbox.
|
dateInput(inputId, label, value = NULL, min = NULL, max = NULL, format = "yyyy-mm-dd", language = "en")
|
|
fileInput(inputId, label, multiple = FALSE, accept = NULL, width = NULL, buttonLabel = "Browse...", placeholder = "No file selected")
|
Creates a file upload input.
|