R闪亮滚动wellPanel

时间:2015-03-26 23:02:53

标签: r shiny

是否可以滚动井板或柱?

我这里有一个简单的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; }')

由于

1 个答案:

答案 0 :(得分:16)

感谢Carlos Sanchez,答案是:

wellPanel(id = "tPanel",style = "overflow-y:scroll; max-height: 600px",
other-stuff..)