Hi Nir,
Could you please help me in this code, i am trying to create two tabs in the dashboard. But nothing is appearing apart from sidebar panel. Thanks a lot for your previous solution, It worked.
ui <- dashboardPage(
header = dashboardHeader(title = "Queries Dashboard"),
sidebar =
dashboardSidebar(width=150, sidebarMenu(
menuItem("RAVE Query",tabName = "RAVEQueryDetail",
sliderInput("bins",
"Number of bins:",
min = 1,
max = 20,
value = 10
)),
menuItem("ARMADA",tabName = "ARMADAEditChecks")
)),
dashboardBody(
tabItems(
tabItem(
tabName = "RAVEQueryDetail",
fluidRow(box(width=4, plotOutput("Marking_gr", width="200px",height="200px")), box(width=8, plotOutput("distPlot", width="500px",height="300px"))),
fluidRow(box(tableOutput("QueryDetail"))),
),
tabItem(tabName = "ARMADAEditChecks")
)
)
)