Using similar UI script in R shiny under multiple subMenuItems

后端 未结 1 1511
一生所求
一生所求 2020-12-22 08:50

the given R shiny script creates a dropdown menu in the sidebar with main and sub menu items. When you click on the first sub-item 1, you get two selectInputs in the dashboa

相关标签:
1条回答
  • 2020-12-22 09:23

    Your code can be rewritten with shiny modules. The UI module where you want to display the two dropdowns can be written as one (Ui function) and then can be referred in the places you want.

    Modified code:

    library(shiny)
    library(shinydashboard)
    
    submenuUI <- function(id) {
      ns <- NS(id)
    
    
      # return a list of tags
      tagList(
         column(2,offset = 0, style='padding:1px;', 
                                   selectInput(ns("select1"),"select1",c("A1","A2","A3"), selected = "A1")),
                column(2,offset = 0, style='padding:1px;', 
                       selectInput(ns("select2"),"select2",c("A3","A4","A5"), selected = "A3"))
      )
    
    
    }
    
    
    submenu <- function(input,output,session){}
    
    
    ui <- dashboardPage(
      dashboardHeader(), 
      dashboardSidebar(
        sidebarMenu(
    
          id = "tabs",
          menuItem("Charts", icon = icon("bar-chart-o"),
                   menuSubItem("Sub-item 1", tabName = "subitem1"),
                   menuSubItem("Sub-item 2", tabName = "subitem2"),
                   menuSubItem("Sub-item 3", tabName = "subitem3"),
                   menuSubItem("Sub-item 4", tabName = "subitem4")
          ))),
      dashboardBody(
        tabItems(tabItem("subitem1", submenuUI('submenu1')),
          tabItem("subitem2", submenuUI('submenu2')),
          tabItem("subitem3", submenuUI('submenu3')),
          tabItem("subitem4", "Sub-item 2 tab content"))))
    server <- function(input, output, session) {
      callModule(submenu, "submenu")
    }
    shinyApp(ui, server)
    
    0 讨论(0)
提交回复
热议问题