textInput4 {ggplotAssist} | R Documentation |
Create side-by side textInput with disabled spell check
Description
Create side-by side textInput with disabled spell check
Usage
textInput4(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 |
backgroung color |
... |
arguments to be passed to textInput |
Examples
library(shiny)
# Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
textInput4("id", "id", ""),
textInput4("name","name","")
)
server <- function(input, output) {
}
shinyApp(ui, server)
}
[Package ggplotAssist version 0.1.3 Index]