Learn R Programming

editData (version 0.1.8)

selectizeInput3: side-by-side selectizeInput

Description

side-by-side selectizeInput

Usage

selectizeInput3(..., width = 100)

Arguments

...

Further arguments to be passed to selectizeInput

width

Input width in pixel

Examples

Run this code
# NOT RUN {
library(shiny)
# Only run examples in interactive R sessions
if (interactive()) {
  ui <- fluidPage(
         selectizeInput3("color", "color", choices=colors())
    )
    server <- function(input, output) {

    }
    shinyApp(ui, server)
}
# }

Run the code above in your browser using DataLab