Skip to main content

Properties

The Textarea Widget properties panel contains settings that control the multi-line input label, validation, appearance, and autocomplete behavior.


General

PropertyDescription
LabelThe visible label displayed above or beside the textarea.
NameInternal field name. Used for data binding and referencing the widget in logic or scripts.
PlaceholderHint text displayed inside the field when it is empty.
RequiredMarks the field as mandatory. Validation fails if the field is empty when the form is submitted.
Required MessageCustom validation error message shown when the field is required but empty.
ReadonlyMakes the textarea non-editable. The current value is displayed but cannot be changed.
VisibleControls whether the textarea is displayed. When unchecked, the widget is hidden but remains configured.

Appearance

PropertyDescription
SizeSets the visual size of the field: Small, Medium, or Large.
VariantSets the visual style of the field: Outlined (border around the field), Filled (shaded background), or Standard (bottom border only).
Text AlignControls the horizontal alignment of the text inside the field.
Font SizeOverrides the font size defined in the project theme.
Font WeightOverrides the font weight defined in the project theme.
Min HeightSets the minimum height of the textarea. Supports px, %, or vh units.

Advanced

PropertyDescription
AutocompleteWhen enabled, the widget fires an onGetCustomResponse event to the backend as the user types. The backend can return a list of suggestions displayed below the field. See Textarea Events.
On Change HandlerWhen enabled, the widget fires an onChange event to the backend when the value changes on blur. See Textarea Events.
Ignore ReadonlyOverrides the Readonly setting. Allows the field to remain editable even if the form or parent container is set to read-only.