textAreaInput4: Create side-by side textAreaInput with disabled spell check

Description Usage Arguments Examples

Description

Create side-by side textAreaInput with disabled spell check

Usage

1
2
textAreaInput4(inputId, label, value = "", bg = NULL, width = "100%",
  ...)

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.

bg

backgroung color

width

The width of the input in pixel

...

arguments to be passed to textInput

Examples

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

ggplotAssist documentation built on May 1, 2019, 8:43 p.m.