You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the fantastic work! I want to change the appearance of my shiny app, and I found md option in the dashboardPage with md=TRUE is what I needed, even if it is experimental. The problem is that checkboxes do not show in sidebar (both right and left). Moreover, it is challenging to know which tab is selected in the body part as the colour hides the separating lines.
Thanks for the fantastic work! I want to change the appearance of my shiny app, and I found md option in the dashboardPage with md=TRUE is what I needed, even if it is experimental. The problem is that checkboxes do not show in sidebar (both right and left). Moreover, it is challenging to know which tab is selected in the body part as the colour hides the separating lines.
`library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
menu <- controlbarMenu(
id = "controlbarMenu",
controlbarItem(
"Tab 1",
"Welcome to tab 1"
),
controlbarItem(
"Tab 2",
numericInput("num", "Observations:", 200, min = 1, max = 1000, step = 100)
)
)
shinyApp(
ui = tags$body(class="skin-blue sidebar-mini control-sidebar-open",
dashboardPage(
md = TRUE,
skin = "blue-light",
options = list(sidebarExpandOnHover = TRUE),
header = dashboardHeader(title = "Investment Advisor Monitoring - Insider Trading",titleWidth = 450),
)`
The text was updated successfully, but these errors were encountered: