是否可以滚动wellPanel或列?

我在这里有一个简单的ui方案。

shinyUI(
  fluidPage(
    sidebarLayout(
      sidebarPanel(
        wellPanel(),
        wellPanel()

        ),
        mainPanel(
          fluidRow(
            column(3,
             wellPanel()
            )
          )
        )
    )
  )
)

我想使其中一些wellPanels(内部带有窗体)可滚动。

我试图在“sidebarPanel(”)下添加下面这段代码,但是这使我的整个sidebarpanel都可以滚动。我希望使“wellPanel”或“column”滚动。
tags$head(tags$style(
  type = 'text/css',
  'form-group { max-height: 600px; overflow-y: auto; }')

谢谢

最佳答案

感谢Carlos Sanchez,这是答案:

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

关于R Shiny 滚动板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29290433/

10-09 18:52