是否可以滚动井板或柱?
我这里有一个简单的ui方案。
shinyUI(
fluidPage(
sidebarLayout(
sidebarPanel(
wellPanel(),
wellPanel()
),
mainPanel(
fluidRow(
column(3,
wellPanel()
)
)
)
)
)
)
我想将其中一些wellPanel(内置表单)可滚动。
我尝试在' sidebarPanel(')下面添加下面这段代码,但这使我的整个侧边栏面板滚动。我希望制作一个' wellPanel'或者& #39;列'可滚动。
tags$head(tags$style(
type = 'text/css',
'form-group { max-height: 600px; overflow-y: auto; }')
由于
答案 0 :(得分:16)
感谢Carlos Sanchez,答案是:
wellPanel(id = "tPanel",style = "overflow-y:scroll; max-height: 600px",
other-stuff..)