Form Textarea

Multi-line text input. Wire onChange to a ValueStore setValue to capture typed content.

Surfaces
google-apps-script-webmcp-apps
Fields
FieldType
labelstringoptional
placeholderstring. Greyed-out hint text, NOT a real value — never submitted if the reader doesn't type. Use `value` instead for a real, editable, submittable pre-fill.optional
valuestring. Real pre-filled, editable content — rendered as actual text inside the box, submitted as-is if the reader doesn't change it. If you also declare a ValueStore for this field's onChange, keep its initialValue equal to this same string, or a reader who never touches the box will submit an empty value despite seeing real text.optional
rowsinteger (optional, default 4)optional
Example payload
{
  "type": "form_textarea"
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:form_textarea",
  "displayName": "Form Textarea",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/form_textarea",
  "capabilities": [
    "google-apps-script-web",
    "mcp-apps"
  ],
  "description": "Multi-line text input. Wire onChange to a ValueStore setValue to capture typed content.",
  "representativeQueries": [
    "show a multi-line text input area",
    "multi-line text input. wire onchange to a valuestore setvalue to capture typed content.",
    "render a form textarea"
  ]
}
← Full ARD catalog
Deploy your own Google Apps Script renderer

The renderer is an open-source Google Apps Script web app. Deploy your own instance in 4 commands — you own the URL, no dependency on the demo endpoint.

git clone https://github.com/a2uicatalog/a2ui
cd a2ui/apps-script-surface/gas-wired-renderer
clasp push && clasp deploy
Full deploy guide →