tagsTextInput: text input specific to tags

Description Usage Arguments Examples

View source: R/tagsTextInput.R

Description

text input specific to tags

Usage

1

Arguments

...

see textInput

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Not run: 
  library(shiny)
  ui <- fluidPage(
    tagsTextInput("fruits", "Fruits", "apple, banana"),
    textOutput("out")
  )

  server <- function(input, output){
    output$out <- renderPrint( strsplit( input$fruits, ",")[[1]] )
  }

  shinyApp( ui, server )


## End(Not run)

ThinkRstat/tagsinput documentation built on May 6, 2019, 6:03 p.m.