Shiny - dashboardPage - 如何向框标题添加按钮

时间:2017-07-12 08:33:34

标签: javascript css r shiny shinydashboard

使用dashboardPage我制作了一个由盒子制成的仪表板。

我希望能够点击框标题上的某个位置来触发某些操作。我知道标题有一个按钮的唯一情况是可扩展框的情况。是否可以概括一下,以便在框中标题处的某个位置触发某些操作?

我的设计目标是在用户点击此按钮时更新框中的信息,即更改框的内容。

谢谢!

body <- dashboardBody(
  fluidRow(
    box(
      title = "Title 1", width = 4, solidHeader = TRUE, status = "primary",
      "Box content"
    ),
    box(
      title = "Title 1", width = 4, solidHeader = TRUE, status = "warning",
      "Box content"
    )
  )
)
# We'll save it in a variable `ui` so that we can preview it in the console
ui <- dashboardPage(
  dashboardHeader(title = "Row layout"),
  dashboardSidebar(),
  body
)
# Preview the UI in the console
shinyApp(ui = ui, server = function(input, output) { })

1 个答案:

答案 0 :(得分:2)

如果您想在框标题的右上角有一个按钮,您可以修改原始的box功能,或者您可以在创建框后使用一些JavaScript添加按钮。

更简单的解决方案是使用actionLinkactionButton创建方框标题。贝娄是这两种情况的一个例子。第一个框的标题为actionLink,当用户点击它时,框的内容会更新。在第二个框中,标题使用纯文本和小actionButton创建,它还将更新框内容。对于第二个框,您可以添加一些自定义样式以创建与普通框大小相同的标题。

library(shiny)
library(shinydashboard)

body <- dashboardBody(
  fluidRow(
    box(
      title = actionLink("titleId", "Update", icon = icon("refresh")), 
      width = 4, solidHeader = TRUE, status = "primary",
      uiOutput("boxContentUI")
    ),
    box(
      title = p("Title 1", 
                actionButton("titleBtId", "", icon = icon("refresh"),
                  class = "btn-xs", title = "Update")
      ), 
      width = 4, solidHeader = TRUE, status = "warning",
      uiOutput("boxContentUI2")
    )
  )
)

ui <- dashboardPage(
  dashboardHeader(title = "Row layout"),
  dashboardSidebar(),
  body
)

server = function(input, output, session) { 
  output$boxContentUI <- renderUI({
    input$titleId
    pre(paste(sample(letters,10), collapse = ", "))
  }) 

  output$boxContentUI2 <- renderUI({
    input$titleBtId
    pre(paste(sample(LETTERS,10), collapse = ", "))
  })  
}

shinyApp(ui = ui, server = server)