【发布时间】:2019-11-04 01:38:16
【问题描述】:
我想围绕我的 DT-Output 生成一个 boxPlus。现在当我启动我的APP时,盒子的框架已经在那里了。如何管理该框仅在表格输出完成时显示?作为输入,我使用文本输入。
在我的 UI 中我用于输入:
textInput("name", "Insert Number:")
我创建的最后一个盒子:
uiOutput("box")
在服务器端我做:
output$name <- renderText(input$name)
New_input <- reactive({
list(input$name)
})
我创建的盒子是这样的:
output$box <- renderUI({
boxPlus(
div(style = 'overflow-x: scroll;'), dataTableOutput("table")
)
})
我尝试过:Similar Problem,但我无法解决问题。没有盒子一切正常。
【问题讨论】:
-
请提供完整的reproducible example。
-
你看到我的回答了吗?它解决了你的问题吗?