我想通过单击在弹出窗口中显示数据表valueBox
。valueBox
本身应该作为actionButton
.
当我单击它时,valueBox
它应该在弹出窗口中呈现一个表格,如下图所示。
任何人都可以帮助解决此代码吗?
我的代码:
library(shiny)
library(shinydashboard)
data <- iris
ui <- dashboardPage(
dashboardHeader(title = "Telemedicine HP"),
dashboardSidebar(),
dashboardBody(
fluidRow(
valueBox( 60, subtitle = tags$p("Attended", style = "font-size: 200%;"),
icon = icon("trademark"), color = "purple", width = 4,
href = NULL))))
server <- function(input,output){
}
shinyApp(ui, server)