dynamic body in shiny dashboard

后端 未结 1 1712
终归单人心
终归单人心 2021-02-03 13:35

I am using R/shinydasboard to create a web app that I am putting behind a login screen.

I\'m having trouble with getting the main body to render based on the sidebar men

相关标签:
1条回答
  • 2021-02-03 14:23

    You need to set the tabItem as active:

    tabItem(tabName = "t_item1", class = "active", box(title = "Item 1 information"))
    

    It will render the first tab when you dynamically render the content after login.

    0 讨论(0)
提交回复
热议问题