在R中使用条件面板和PickerInput
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在R中使用条件面板和PickerInput相关的知识,希望对你有一定的参考价值。
在下面给出的R闪亮脚本中,我正在尝试使用带有Picker Input闪亮小部件的条件面板。在pickerInput中有三个选项,在选择“times”选项后,我希望使用条件面板创建新的pickerInputs,使用selectInput可以实现以下功能,但我需要对Picker Input使用相同的选项。谢谢,请帮助。
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(title = "Picket",titleWidth = 290),
dashboardSidebar(width = 0),
dashboardBody(
tabsetPanel(type = "tab",
tabPanel("Overview", value = 1,
box(
column(1,
dropdown(
pickerInput(inputId = "resources",
label = "",
choices = c("cases",
"activities",
"times"),
choicesOpt = list(icon = c("fa fa-bars",
"fa fa-bars",
"fa fa-safari")),
options = list(`icon-base` = "")),
circle = FALSE, status = "primary", icon = icon("list", lib = "glyphicon"), width = "300px"
),
conditionalPanel(
condition = "input.Position == 'times' ",
dropdown(
pickerInput(inputId = "Id072",
label = "Select/deselect all options",
choices = c("A","Check-out", "b","c","d","e","f")
)))))),
id= "tabselected"
)
))
server <- function(input, output) {
}
shinyApp(ui, server)
答案
这个qazxsw poi不应该是qazxsw poi吗?
以上是关于在R中使用条件面板和PickerInput的主要内容,如果未能解决你的问题,请参考以下文章
在 Shiny 的 pickerInput 中将答案下拉框移到右侧