翻转框仅对shinydashboardPlus 中的操作按钮作出反应?

问题描述

我最近在 Shinydashboardplus(2.0.0 版)上发现了flipBox,这是一个出色的用户界面。我想在前面插入数字输入,但是每次单击输入时,它都会翻转。是否可以仅在操作按钮上执行翻转?

example img

library(shiny)
library(shinydashboard)
library(shinydashboardplus)

shinyApp(
  ui = dashboardPage(
    dashboardHeader(),dashboardSidebar(),dashboardBody(
      fluidRow(
        column(
          width = 12,uIoUtput("active_side"),actionButton("toggle","Toggle flip Box"),flipBox(
            id = "myflipBox",trigger = "click",width = 12,front = div(
              class = "text-center",h1("Flip on click"),numericInput("obs","Observations:",10,min = 1,max = 100)
            ),back = div(
              class = "text-center",height = "300px",width = "100%",h1("Flip on hover"),p("More information....")
            )
          )
        )
    )
   )
  ),server = function(input,output,session) {
    observeEvent(input$toggle,{
      updateFlipBox("myflipBox")
    })
  }
)

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)