textAreaInput4 {ggplotAssist}R Documentation

Create side-by side textAreaInput with disabled spell check

Description

Create side-by side textAreaInput with disabled spell check

Usage

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

library(shiny)
# Only run examples in interactive R sessions
if (interactive()) {
     ui <- fluidPage(
          textAreaInput4("Code","Code","")
     )
     server <- function(input, output) {
          
     }
     shinyApp(ui, server)
}  

[Package ggplotAssist version 0.1.3 Index]