Textarea Control
Multi-line plain text input for longer content without formatting.
Options
Section titled “Options”| Option | Type | Default | Description |
|---|---|---|---|
label | string | - | Field label |
control | string | textarea | Control type |
placeholder | string | - | Placeholder text |
rows | number | - | Number of visible rows |
default | string | - | Default value |
Example
Section titled “Example”{ "attributes": { "description": { "type": "string", "default": "", "wbs": { "label": "Description", "control": "textarea", "placeholder": "Write your description...", "rows": 6 } } }}Template Usage
Section titled “Template Usage”<p class="description">{{ attributes.description }}</p>Use Case
Section titled “Use Case”Use Textarea for:
- Descriptions and bios
- Excerpts and summaries
- Any plain text content spanning multiple lines
For rich formatted content with HTML, use Rich Text control instead.