Skip to Content
ComponentsTextarea

Textarea

The Textarea textarea field is the basic multi-row text input.

Example

{ "component": "textarea", "label": "My Textarea", "name": "my_textarea", "react-rsuite5": { "fullWidth": true, "width": 150, "rows": 4, "size": "md" }, "placeholder": "Write something here" }
Example textarea
Test buttons

Reference

PropertyTypeDescription
componentstring
= "textarea"
namestringThe name of the field and the key of the JSON
labelstring | i18nLabel of the field
hintstring | i18nHelp text for the field (generally shown below the input box)
placeholderstring | i18nPlaceholder text, visibile when the field is empty
disabledbooleanDisables and greys out the field
readOnlybooleanPut the field in read only mode
hiddenbooleanHides the field from the form
classNamestringCSS class name to assign to the field container
fullWidthbooleanSet the width of the field to 100% of the enclosing container
widthnumberSet the width (in pixel) of the field
rowsnumberNumber of rows
Bootstrap
React Suite