↧
Answer by YBS for observeEvent listen to any input with same name pattern
For dynamic number of buttons you could uselibrary(shiny)ui <- fluidPage( actionButton("button_1", label = "Button 1"), actionButton("button_2", label = "Button 2"), actionButton("button_3", label =...
View ArticleAnswer by guasi for observeEvent listen to any input with same name pattern
I made this work for a number of buttons that you would define in the eventExpr of the observeEventlibrary(shiny)ui <- fluidPage( actionButton("button_1", label = "Button 1"),...
View ArticleobserveEvent listen to any input with same name pattern
I have a Shiny app with many inputs with similar id. There's one action that any of them should trigger. I need to dinamically refer to those input ids inside an observeEvent listener. The number of...
View Article