R/input-checkboxgroupbuttons.R
updateCheckboxGroupButtons.RdChange the value of a checkbox group buttons input on the client
updateCheckboxGroupButtons(
session = getDefaultReactiveDomain(),
inputId,
label = NULL,
choices = NULL,
selected = NULL,
status = "default",
size = "normal",
justified = FALSE,
checkIcon = list(),
choiceNames = NULL,
choiceValues = NULL,
disabled = FALSE,
disabledChoices = NULL
)The session object passed to function given to
shinyServer. Default is getDefaultReactiveDomain().
The id of the input object.
The label to set for the input object.
List of values to show checkboxes for. 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 and choiceValues
must not be provided, and vice-versa. The values should be strings; other
types (such as logicals and numbers) will be coerced to strings.
The values that should be initially selected, if any.
Add a class to the buttons, you can use Bootstrap status like 'info', 'primary', 'danger', 'warning' or 'success'.
Or use an arbitrary strings to add a custom class, e.g. : with status = "custom-class", buttons will have class btn-custom-class.
Size of the buttons ('xs', 'sm', 'normal', 'lg')
If TRUE, fill the width of the parent div
A list, if no empty must contain at least one element named 'yes' corresponding to an icon to display if the button is checked.
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 and choiceValues
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 that choiceNames allows any
type of UI object to be passed through (tag objects, icons, HTML code,
...), instead of just simple text. See Examples.
Initialize buttons in a disabled state (users won't be able to select a value).
Vector of specific choices to disable.
library("shiny")
library("shinyWidgets")
ui <- fluidPage(
checkboxGroupButtons(
inputId = "somevalue",
choices = c("A", "B", "C"),
label = "My label"
),
verbatimTextOutput(outputId = "res"),
actionButton(inputId = "updatechoices", label = "Random choices"),
pickerInput(
inputId = "updateselected",
label = "Update selected:",
choices = c("A", "B", "C"),
multiple = TRUE
),
actionButton(inputId = "clear", label = "Clear selected"),
textInput(inputId = "updatelabel", label = "Update label")
)
server <- function(input, output, session) {
output$res <- renderPrint({
input$somevalue
})
observeEvent(input$updatechoices, {
newchoices <- sample(letters, sample(2:10, 1))
updateCheckboxGroupButtons(
session = session,
inputId = "somevalue",
choices = newchoices
)
updatePickerInput(
session = session,
inputId = "updateselected",
choices = newchoices
)
})
observeEvent(input$updateselected, {
updateCheckboxGroupButtons(
session = session,
inputId = "somevalue",
selected = input$updateselected
)
}, ignoreNULL = TRUE, ignoreInit = TRUE)
observeEvent(input$clear, {
updateCheckboxGroupButtons(
session = session,
inputId = "somevalue",
selected = character(0)
)
})
observeEvent(input$updatelabel, {
updateCheckboxGroupButtons(
session = session,
inputId = "somevalue",
label = input$updatelabel
)
}, ignoreInit = TRUE)
}
if (interactive())
shinyApp(ui = ui, server = server)