Textarea
2 min
the textarea element provides a multi line text input area, ideal for collecting longer or unstructured content β such as notes, comments, descriptions, reasons for rejection, or any narrative input that would be impractical to fit in a single line field unlike the text input, which is optimized for concise values, the textarea is designed for paragraphs and blocks of text the visible row height is configurable (rows), allowing you to match the input size to the expected content length it supports the same validation, default values, and runtime control features as other input elements key use cases β’ collecting comments, feedback, rejection reasons, or approval notes β’ displaying multi line process outputs or computed summaries in read only mode β’ adjusting visible rows dynamically to match expected content length β’ pre filling a textarea with a template or boilerplate text via defaultvalue on load runtime api β attributes in procesio forms all attributes below are accessible and modifiable at runtime via the element's data model in procesio forms β on any available event such as onload, onchange, or custom triggers api name description type default notes label display label above the textarea string β β placeholder hint text shown inside the empty textarea string β β tooltip help text shown alongside the label string β β infotext supplementary info displayed below the input string β β rows number of visible text rows (controls height) number 4 β defaultvalue initial value when the form loads string β β value current runtime value β read or set programmatically string β β readonly view only mode β user cannot edit boolean false β disabled fully non interactive boolean false β visible controls element visibility boolean true β name unique element name string β β id unique element id string β β required marks the field as mandatory on submit boolean false β regex regex validation pattern string|null β β for support, please join our https //discord com/invite/cebukgjefv for further assistance and support
