shiny (version 0.9.1)

updateTabsetPanel: Change the selected tab on the client

Description

Change the selected tab on the client

Usage

updateTabsetPanel(session, inputId, selected = NULL)

Arguments

See Also

tabsetPanel, navlistPanel, navbarPage

Examples

Run this code
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")
    }
  })
})

Run the code above in your browser using DataCamp Workspace