textArea.Rd
Contrary to textAreaInput the component is not a binding itself (doesn't send input to the server). Thanks to that, the component can store much more text value without slowing down the application.
If you want to access the component value on request please use valueButton.
textArea(
inputId,
value,
label,
width = "100%",
height = "200px",
resize = "default",
readonly = FALSE,
...
)
updateTextArea(session, inputId, value = NULL)
Id of component. This is stored as `data-id` attribute to omit automatic binding of the element (into textAreaInput).
Initial text area value or value to be updated.
Text area label.
Width of input area.
Height of input area.
Text are directions where input field can be resized. Possible options are "default", "both", "none", "vertical" and "horizontal".
If TRUE, providing custom values will be turned off.
Extra arguments passed to textarea
tag form tags.
Shiny session object.
Nested list of `shiny.tag` objects defining html structure of the component, or no value in case of usage of `updateTextArea` method.