5
votes

I am trying to dynamically switch the active tabPanel in the tabsetPanel when the value of selectInput changes. How would I be able to achieve this?

1

1 Answers

6
votes

Something like this ought to work:

observe({
  updateTabsetPanel(session, "tabsetId", selected = input$selectInputId)
})