将多个项目粘贴到selectizeInput [有光泽]

时间:2017-07-03 13:14:51

标签: javascript r shiny shinydashboard

我正在构建一个使用多个= TRUE的选择性输入的应用程序。我一直在寻找一种方法,允许用户粘贴逗号分隔的项目列表,而不必单独输入每个项目。看起来selectize.js支持这个版本0.12.0。

有没有办法在Shiny中做到这一点?

1 个答案:

答案 0 :(得分:0)

可以使用strsplit

完成此操作
choices <- "choice 1, some other choice, and another one"

shinyApp(
  fluidPage(selectInput("id", "select", strsplit(choices, ", ")[[1]])),
  function(...){}
)