when I click the selection everytime, the drop download box close automaticlly.
Please how to keep the drop box open ?
Great Thanks
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
dropdownButton(
label="Close after click",
style = "unite",
icon = icon("gear"),
multiInput('test','test',choices = letters)
)
)
server <- function(input, output, session) {}
shinyApp(ui, server)