I have a Shiny app with several tabPanels within a navbarPage.
ui<-shinyUI(
navbarPage(
theme = "cyborgBootstrap.css",
"Shiny panel append",
tabPanel(
"First Panel",
strong("panel 1")
),
tabPanel(
"Second Panel",
strong("panel 1")
),
tabPanel(
"Third Panel",
strong("panel 1")
)
)
)
When the app loads, "First Panel" will be active. I would like to be able to add some server functions that toggle the panels when certain tasks complete. How could I toggle between panels programmatically?
updateNavbarPage(but you'll need to set thenavbarPageid) - HubertL