I am having some trouble fitting a data table with a scroll feature in my shiny dashboard. Your help would be great.
dashboardBody(
tabItems(
tabItem(tabName = "Calendar",
fluidRow(
box(width = 2, height = 300,
title = "Earnings Calendar",
div(style = 'overflow-y: scroll',tableOutput("calendar"))
)
)
),
tabItem(tabName = "Earnigns"),
tabItem(tabName = "Pre Earnings"),
tabItem(tabName = "Scanner"),
tabItem(tabName = "Contact")
)
)