Update dragulaInput()
widget server-side.
Usage
updateDragulaInput(
session,
inputId,
choices = NULL,
choiceNames = NULL,
choiceValues = NULL,
selected = NULL,
selectedNames = NULL,
selectedValues = NULL,
badge = TRUE,
status = "primary"
)
Arguments
- session
The
session
object passed to function given toshinyServer
.- inputId
The
input
slot that will be used to access the value.- choices
List of values to select from (if elements of the list are named then that name rather than the value is displayed to the user). If this argument is provided, then
choiceNames
andchoiceValues
must not be provided, and vice-versa. The values should be strings; other types (such as logicals and numbers) will be coerced to strings.- choiceNames, choiceValues
List of names and values, respectively, that are displayed to the user in the app and correspond to the each choice (for this reason,
choiceNames
andchoiceValues
must have the same length). If either of these arguments is provided, then the other must be provided and choices must not be provided. The advantage of using both of these over a named list for choices is thatchoiceNames
allows any type of UI object to be passed through (tag objects, icons, HTML code, ...), instead of just simple text.- selected
Default selected values. Must be a
list
withtargetsIds
as names.- selectedNames, selectedValues
Update selected items with custom names and values.
- badge
Displays choices inside a Bootstrap badge. Use
FALSE
if you want to pass custom appearance withchoiceNames
.- status
If choices are displayed into a Bootstrap label, you can use Bootstrap status to color them, or
NULL
.
Examples
if (interactive()) {
library("shiny")
library("esquisse")
ui <- fluidPage(
tags$h2("Update dragulaInput"),
radioButtons(
inputId = "update",
label = "Dataset",
choices = c("iris", "mtcars")
),
tags$br(),
dragulaInput(
inputId = "myDad",
sourceLabel = "Variables",
targetsLabels = c("X", "Y", "fill", "color", "size"),
choices = names(iris),
replace = TRUE, width = "400px", status = "success"
),
verbatimTextOutput(outputId = "result")
)
server <- function(input, output, session) {
output$result <- renderPrint(str(input$myDad))
observeEvent(input$update, {
if (input$update == "iris") {
updateDragulaInput(
session = session,
inputId = "myDad",
choices = names(iris),
status = "success"
)
} else {
updateDragulaInput(
session = session,
inputId = "myDad",
choices = names(mtcars)
)
}
}, ignoreInit = TRUE)
}
shinyApp(ui, server)
}