Renders a data table with client-side column sorting and optional pagination.
| Surface | Note |
|---|---|
| meet-stage | Sorting interaction requires JS not available in stage. |
| Renders as static table. |
| Field | Type | |
|---|---|---|
| headers | array of strings. Column headers. | required |
| rows | array of arrays. Table rows. | required |
{
"type": "data_table_sortable",
"headers": [
"Name",
"Value",
"Status"
],
"rows": [
[
"Example",
"42",
"Active"
],
[
"Another",
"17",
"Pending"
]
]
}
{
"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"
]
}
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 →