We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
accordion(open=TRUE)
In the following example, Accordion 2 should be open but the nested accordion within Accordion 2 should have all of its panels closed.
library(shiny) library(bslib) ui <- page_fluid( accordion( open = "Accordion 2", accordion_panel("Accordion 1"), accordion_panel( "Accordion 2", accordion( open = FALSE, accordion_panel("Nested accordion 1"), accordion_panel("Nested accordion 2") ) ) ) ) server <- function(input, output, session) {} shinyApp(ui, server)
The text was updated successfully, but these errors were encountered:
Unfortunately, I have encountered the exact same issue and would also be very interested in a solution.
Sorry, something went wrong.
No branches or pull requests
In the following example, Accordion 2 should be open but the nested accordion within Accordion 2 should have all of its panels closed.
The text was updated successfully, but these errors were encountered: