textInput3: Create a side-by-side textInput control for entry of...

Description Usage Arguments Examples

Description

Create a side-by-side textInput control for entry of unstructured text values

Usage

1
textInput3(inputId, label, value = "", width = 100, bg = NULL, ...)

Arguments

inputId

The input slot that will be used to access the value.

label

Display label for the control, or NULL for no label.

value

Initial value.

width

The width of the input in pixel

bg

The color of text

...

arguments to be passed to textInput

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
library(shiny)
# Only run examples in interactive R sessions
if (interactive()) {
  ui <- fluidPage(
         textInput3("id", "id", ""),
         textInput3("name","name","")
    )
    server <- function(input, output) {

    }
    shinyApp(ui, server)
}

cardiomoon/editData documentation built on July 18, 2021, 2:53 p.m.