PROCESIO
OverviewPlatform ActionsIntegrations & DemosCustom ActionsDeveloper’s Guide

Textarea

The Textarea element provides a multi-line text input area, ideal for collecting longer or unstructured content — such as notes, comments,…

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 NameDescriptionTypeDefaultNotes
labelDisplay label above the textareastring
placeholderHint text shown inside the empty textareastring
tooltipHelp text shown alongside the labelstring
infotextSupplementary info displayed below the inputstring
rowsNumber of visible text rows (controls height)number4
defaultvalueInitial value when the form loadsstring
valueCurrent runtime value — read or set programmaticallystring
readonlyView-only mode — user cannot editbooleanfalse
disabledFully non-interactivebooleanfalse
visibleControls element visibilitybooleantrue
nameUnique element namestring
idUnique element IDstring
requiredMarks the field as mandatory on submitbooleanfalse
regexRegex validation patternstring|null

For support, please join our Discord community for further assistance and support.

On this page