Is it possible to add dynamically a new item in a shiny accordion
问题 Is it possible to add dynamically a new item in a shiny accordion, for example when clicking on a button ? below a non-working example using dq_accordion from the dqshiny package Thanks ! library(shiny) library(dqshiny) shinyApp( ui = fluidPage( fluidRow( actionButton("add", "+"), dq_accordion("myAccordion", titles = paste0("input",1:3), contents = list(textInput(inputId = "txt1", label = ""), textInput(inputId = "txt2", label = ""), textInput(inputId = "txt3", label = "")), bg_color = NULL,