0
使用dashboardPage
我做了一個儀表板的框。Shiny - 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) { })
有後看看[這裏](https://stackoverflow.com/questions/37169039/direct-link-to-tabitem-with-r-shiny-dashboard)特別是部分:「*編輯:整個infoBox可點擊*「 – Biranjan