Data Table Sortable

Renders a data table with client-side column sorting and optional pagination.

Surfaces
webapps-script-web
Degraded on
SurfaceNote
meet-stageSorting interaction requires JS not available in stage.
emailRenders as static table.
Fields
FieldType
headersarray of strings. Column headers.required
rowsarray of arrays. Table rows.required
Example payload
{
  "type": "data_table_sortable",
  "headers": [
    "Name",
    "Value",
    "Status"
  ],
  "rows": [
    [
      "Example",
      "42",
      "Active"
    ],
    [
      "Another",
      "17",
      "Pending"
    ]
  ]
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:data_table_sortable",
  "displayName": "Data Table Sortable",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/data_table_sortable",
  "capabilities": [
    "web",
    "apps-script-web"
  ],
  "description": "Renders a data table with client-side column sorting and optional pagination.",
  "representativeQueries": [
    "show a sortable data table with column headers",
    "renders a data table with client-side column sorting and optional pagination.",
    "render a data table sortable"
  ]
}
← Full ARD catalog Try it live →
Deploy your own renderer

The renderer is open source. 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 apps-script-surface/gas-schema-renderer
clasp push && clasp deploy
Full deploy guide →