library(shinyjs)runApp(shinyApp( ui = fluidPage( useShinyjs(), resettable( div(id = "form", textInput("name", "Name", "Dean"), numericInput("age", "Age", 26), selectInput("letter", "Favourite letter", LETTERS) ) ), actionButton("resetName", "Reset name"), actionButton("resetAll", "Reset all") ), server = function(input, output, session) { observeEvent(input$resetName, { reset("name") }) observeEvent(input$resetAll, { reset("form") }) }))--
You received this message because you are subscribed to the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/a77a26dd-ce9b-42c4-aadf-c2eac9c0fbcc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discuss+unsubscribe@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/a77a26dd-ce9b-42c4-aadf-c2eac9c0fbcc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/shiny-discuss/88OTO7p035o/unsubscribe.
To unsubscribe from this group and all its topics, send an email to shiny-discus...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/shiny-discuss/6be604dc-c697-4fcb-ad62-437466507670%40googlegroups.com.