updateTabsetPanel {shiny} | R Documentation |
Change the selected tab on the client
updateTabsetPanel(session, inputId, selected = NULL) updateNavbarPage(session, inputId, selected = NULL) updateNavlistPanel(session, inputId, selected = NULL)
session |
The |
inputId |
The id of the |
selected |
The name of the tab to make active. |
tabsetPanel
, navlistPanel
,
navbarPage
## Not run: shinyServer(function(input, output, session) { observe({ # TRUE if input$controller is even, FALSE otherwise. x_even <- input$controller %% 2 == 0 # Change the selected tab. # Note that the tabset container must have been created with an 'id' argument if (x_even) { updateTabsetPanel(session, "inTabset", selected = "panel2") } else { updateTabsetPanel(session, "inTabset", selected = "panel1") } }) }) ## End(Not run)