
Last chance! 50% off unlimited learning
Sale ends in
Change the value of a pretty switch on the client
updatePrettySwitch(session, inputId, label = NULL, value = NULL)
The session object passed to function given to shinyServer.
The id of the input object.
The label to set for the input object.
The value to set for the input object.
# NOT RUN {
if (interactive()) {
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
tags$h1("Pretty switch update value"),
br(),
prettySwitch(inputId = "switch1", label = "Update me !"),
verbatimTextOutput(outputId = "res1"),
radioButtons(
inputId = "update", label = "Value to set:",
choices = c("FALSE", "TRUE")
)
)
server <- function(input, output, session) {
output$res1 <- renderPrint(input$switch1)
observeEvent(input$update, {
updatePrettySwitch(session = session, inputId = "switch1",
value = as.logical(input$update))
})
}
shinyApp(ui, server)
}
# }
Run the code above in your browser using DataLab