|
- % Generated by roxygen2: do not edit by hand
- % Please edit documentation in R/shiny_modified_inputs.R
- \name{textAreaInputAlt}
- \alias{textAreaInputAlt}
- \title{Modified Text Area Input}
- \usage{
- textAreaInputAlt(inputId, label, value = "", width = NULL,
- height = NULL, cols = NULL, rows = NULL, placeholder = NULL,
- resize = NULL, is_code = TRUE)
- }
- \arguments{
- \item{inputId}{The \code{input} slot that will be used to access the value.}
-
- \item{label}{Display label for the control, or \code{NULL} for no label.}
-
- \item{value}{Initial value.}
-
- \item{width}{The width of the input, e.g. \code{'400px'}, or \code{'100\%'};
- see \code{\link{validateCssUnit}}.}
-
- \item{height}{The height of the input, e.g. \code{'400px'}, or
- \code{'100\%'}; see \code{\link{validateCssUnit}}.}
-
- \item{cols}{Value of the visible character columns of the input, e.g.
- \code{80}. If used with \code{width}, \code{width} will take precedence in
- the browser's rendering.}
-
- \item{rows}{The value of the visible character rows of the input, e.g.
- \code{6}. If used with \code{height}, \code{height} will take precedence in
- the browser's rendering.}
-
- \item{placeholder}{A character string giving the user a hint as to what can
- be entered into the control. Internet Explorer 8 and 9 do not support this
- option.}
-
- \item{resize}{Which directions the textarea box can be resized. Can be one of
- \code{"both"}, \code{"none"}, \code{"vertical"}, and \code{"horizontal"}.
- The default, \code{NULL}, will use the client browser's default setting for
- resizing textareas.}
-
- \item{is_code}{Should the text input be considered verbatim code input?}
- }
- \description{
- Standard \code{\link[shiny:textAreaInput]{shiny::textAreaInput()}} with additional \code{is_code} parameter, added
- code font style for the input text and with \code{autocomplete}, \code{autocorrect},
- \code{autocapitalize} and \code{spellcheck} set to \code{off} or \code{false}.
- }
- \seealso{
- Other modified shiny inputs: \code{\link{textInputCode}}
- }
- \concept{modified shiny inputs}
|