4

我有一个闪亮的仪表板,它在登录页面上只有一个文本框。用户输入显示相关数据的电子邮件 ID。这工作正常。但是,我需要一个框/选项卡面板,它在用户到达页面时向用户打招呼,并在用户开始在文本输入中输入文本(电子邮件 ID)时消失。这可能吗?

output$introbox=renderUI(box(h3("Welcome to the page. Please enter your email id to proceed")),
                                conditionalPanel(condition=input.emailid=="")

该框在登陆页面时显示,但在输入文本时不会消失。

感谢任何帮助。谢谢

4

3 回答 3

11

奥斯卡的回答是正确的。但它实际上并没有使用 shinyjs,它手动包含了所有 JavaScript。您可以使用他的答案,但这里是使用 shinyjs 重写他的答案

library(shiny)
library(shinydashboard)
library(shinyjs)

ui <-dashboardPage(
  dashboardHeader(),
  dashboardSidebar(
  ),
  dashboardBody(
    useShinyjs(),
    div(id = "greetbox-outer",
      box( id ="greetbox",
           width  = 12, 
           height = "100%",
           solidHeader = TRUE, 
           status = "info",
           div(id="greeting", "Greeting here") 
      )
    ),
    box( id ="box",
         width  = 12, 
         height = "100%",
         solidHeader = TRUE, 
         status = "success",

         textInput("txtbx","Enter text: ")
    )
      )
    )

server <- shinyServer(function(input, output, session) {
  observeEvent(input$txtbx,{
    if (input$txtbx == "") return(NULL)
    hide(id = "greetbox-outer", anim = TRUE)
    print(input$txtbx)
  })
})

shinyApp(ui = ui, server = server) 
于 2015-10-14T20:30:56.287 回答
4

我有一个类似的问题,我的问题是box():如果我更改box()div(),那么显示/隐藏选项工作得很好。

这个解决方案更简单,但不如修改标签那么优雅。只需像这样包装你box()div()

div(id = box1, box(...))
div(id = box2, box(...))

div然后,您使用id调用显示/隐藏。

于 2019-02-25T16:25:28.833 回答
3

是的,这是可能的,因为 daattali sugested shinyjs 可以帮助您完成一些标准的 Javascript 任务。

如果你想隐藏 shinydashboardbox元素,你必须(据我所知)使用一些自定义 Javascript,如下所示:

library(shiny)
library(shinydashboard)
library(shinyjs)

ui <-dashboardPage(
  dashboardHeader(),
  dashboardSidebar(
  ),
  dashboardBody(
    tags$head(
      tags$script(
        HTML("
        Shiny.addCustomMessageHandler ('hide',function (selector) {
          $(selector).parent().slideUp();
        });"
        )
      )
    ),
    box( id ="greetbox",
         width  = 12, 
         height = "100%",
         solidHeader = TRUE, 
         status = "info",
         div(id="greeting", "Greeting here") 
    ),
    box( id ="box",
         width  = 12, 
         height = "100%",
         solidHeader = TRUE, 
         status = "success",

         textInput("txtbx","Enter text: ")
    )
  )
)

server <- shinyServer(function(input, output, session) {
  observeEvent(input$txtbx,{
    if (input$txtbx == "") return(NULL)
    session$sendCustomMessage (type="hide", "#greetbox")
    print(input$txtbx)
  })
})

shinyApp(ui = ui, server = server) 

该框的 html 布局如下所示:

<div class="box box-solid box-info">
    <div class="box-body" id="greetbox">
        <!-- Box content here -->
    </div>
</div>

由于我们想要隐藏整个盒子,我们必须将父元素隐藏到盒子函数中设置的 id,因此是 jQuery 代码片段。

于 2015-10-14T19:51:07.063 回答