show(),hide()使用来自shinyjs,Shiny

时间:2016-03-10 15:37:33

标签: r shiny hide show shinyjs

我有一个我开发的闪亮应用程序的简化版本。我想要的是能够在按下Frame1动作按钮时显示dataframe1并隐藏dataframe2并在按下Frame2动作按钮时再次显示dataframe2并隐藏dataframe1。我需要在同一位置打印表格。感谢您的帮助和时间。

server.R

shinyServer(function(input, output, session) {

  data_for_use <- reactiveValues(d=NULL)

  observeEvent(input$actForFrame1,{
  data_for_use$dataFrame1 <- data.frame(firstColumn= c(1,3,5),secondColumn=c(2,4,6))})

  observeEvent(input$actForFrame2,{
  data_for_use$dataFrame2 <- data.frame(firstColumn= c(10,30,50),secondColumn=c(20,40,60))})

  output$dataFrame1 <- DT::renderDataTable({
    DT::datatable(data_for_use$dataFrame1)
  })

  output$dataFrame2 <- DT::renderDataTable({
    DT::datatable(data_for_use$dataFrame2)
  })

  observeEvent(input$actForFrame1,{
    show("dataFrame1")
    hide("dataFrame2")

  })

  observeEvent(input$actForFrame2,{
    show("dataFrame2")
    hide("dataFrame1")

  }) 
})

ui.R

library(shinyjs)
library(shiny)
library(DT)

shinyUI(pageWithSidebar(

  headerPanel("Test"),

  sidebarPanel(

    actionButton("actForFrame1", "Frame1"),
    actionButton("actForFrame2", "Frame2")
  ),

  mainPanel(
    useShinyjs(),
    wellPanel("Test",
              conditionalPanel(condition = "input.actForFrame1",
              DT::dataTableOutput("dataFrame1")
              ),
              conditionalPanel(condition= "input.actForFrame2",
              DT::dataTableOutput("dataFrame2"))
              )
  )
)
)

1 个答案:

答案 0 :(得分:2)

就像@Dean Attali友好地指出的那样,这些函数与其他软件包使用相同的名称空间,这反过来导致它们不执行其功能。

使用shinyjs::show(); shinyjs::hide()解决了该问题。