(来自闪亮的Google群组的交叉帖子,https://groups.google.com/forum/#!topic/shiny-discuss/CvoABQQoZeE)
如何导航到ShinyDashboard中的特定侧边栏菜单项?
sidebarMenu(
menuItem("Menu Item 1")
menuItem("Menu Item 2")
)
即。如何在“菜单项1”页面上放置一个链接到“菜单项2”的按钮?
要在标签之间导航,我使用updateTabsetPanel函数:
observeEvent(input$go,{
updateTabsetPanel(session, "tabset1", selected = "Step 2")
})
我相信我应该可以使用类似的功能导航到侧边栏菜单,但我不确定那是什么。
任何指针都非常赞赏
由于
伊恩
答案 0 :(得分:7)
这是你在找什么?请注意,该示例取自Change the selected tab on the client
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(title = "Simple tabs"),
dashboardSidebar(
sidebarMenu(id = "tabs",
menuItem("Menu Item 1", tabName = "one", icon = icon("dashboard")),
menuItem("Menu Item 1", tabName = "two", icon = icon("th"))
)
),
dashboardBody(
tabItems(
tabItem(tabName = "one",h2("Dashboard tab content"),actionButton('switchtab', 'Switch tab')),
tabItem(tabName = "two",h2("Widgets tab content"))
)
)
)
server <- function(input, output, session) {
observeEvent(input$switchtab, {
newtab <- switch(input$tabs, "one" = "two","two" = "one")
updateTabItems(session, "tabs", newtab)
})
}
shinyApp(ui, server)