Quantcast
Channel: observeEvent listen to any input with same name pattern - Stack Overflow
Browsing latest articles
Browse All 3 View Live

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 Article


Answer 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 Article


observeEvent 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
Browsing latest articles
Browse All 3 View Live


Latest Images