
Last chance! 50% off unlimited learning
Sale ends in
Change the value of a toggle input on the client
updateF7Toggle(session, inputId, checked = NULL, color = NULL)
The session object passed to function given to the server.
The id of the input object.
Whether the toggle is TRUE or FALSE.
Toggle color.
# NOT RUN {
if (interactive()) {
library(shiny)
library(shinyMobile)
shinyApp(
ui = f7Page(
title = "My app",
f7SingleLayout(
navbar = f7Navbar(title = "updateF7Toggle"),
f7Card(
f7Button(inputId = "update", label = "Update toggle"),
f7Toggle(
inputId = "toggle",
label = "My toggle",
color = "pink",
checked = FALSE
),
verbatimTextOutput("test")
)
)
),
server = function(input, output, session) {
output$test <- renderPrint({input$toggle})
observeEvent(input$update, {
updateF7Toggle(
session,
inputId = "toggle",
checked = TRUE,
color = "green"
)
})
}
)
}
# }
Run the code above in your browser using DataLab