mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
Clean up observeEvent and eventReactive examples
This commit is contained in:
@@ -135,12 +135,12 @@ if (interactive()) {
|
||||
server <- function(input, output) {
|
||||
# Take an action every time button is pressed;
|
||||
# here, we just print a message to the console
|
||||
observeEvent(input$button, function() {
|
||||
observeEvent(input$button, {
|
||||
cat("Showing", input$x, "rows\\n")
|
||||
})
|
||||
# Take a reactive dependency on input$button, but
|
||||
# not on any of the stuff inside the function
|
||||
df <- eventReactive(input$button, function() {
|
||||
df <- eventReactive(input$button, {
|
||||
head(cars, input$x)
|
||||
})
|
||||
output$table <- renderTable({
|
||||
|
||||
Reference in New Issue
Block a user