One surface, one shared state, two column configs: the table renders the full column set with headers while the list renders a condensed card config (order, customer, status, total) with no visible field labels — the labels move to meta.hiddenHeaderLabel, so they stay screen-reader-only in the list. Sort a shared column in the table, toggle to the list, and the sort keeps applying.
Minimal example
<!-- One surface, one state — a different column config per renderer. -->
<nat-table-surface [enableSorting]="true" [(state)]="state">
@if (view() === 'table') {
<nat-table [columns]="tableColumns" [data]="rows" accessibleName="Orders" />
} @else {
<nat-list [columns]="listColumns" [data]="rows" accessibleName="Orders" />
}
</nat-table-surface>// component.ts — the list gets a condensed config with the same column ids,
// so shared state (sorting on a shared column) keeps applying. Moving the
// visible label to meta.hiddenHeaderLabel removes the field labels from the
// list only (they stay screen-reader-only); the table keeps its headers.
protected readonly tableColumns = orderColumns;
protected readonly listColumns = orderColumns
.filter((column) => ['id', 'customer', 'status', 'total'].includes(column.accessorKey))
.map((column) => ({
...column,
meta: { ...column.meta, label: undefined, hiddenHeaderLabel: column.meta?.label }
}));Showing 12 rows across 9 visible columns.
Use arrow keys to move between cells. A cell whose only content is a single button or link focuses it directly. In cells with several controls, press Enter to interact with them, Tab to move forward between them, Shift+Tab to move backward, and Escape to return to the cell.
| Summit Crest | Summit Crest Logistics | Online | West | 5 | Jun 1 | $1,500 | ||
| Beacon Tech | Beacon Tech Labs | Retail | Midwest | 12 | Jun 2 | $5,400 | ||
| Horizon Ventures | Horizon Ventures Group | Wholesale | Northeast | 19 | Jun 3 | $11,400 | ||
| Vanguard Systems | Vanguard Systems Corp | Online | South | 26 | Jun 4 | $19,500 | ||
| Zenith Logistics | Zenith Logistics Services | Retail | West | 33 | Jun 5 | $29,700 | ||
| Quantum Energy | Quantum Energy Group | Wholesale | Midwest | 40 | Jun 6 | $42,000 | ||
| Pacific Trade | Pacific Trade & Supply | Online | Northeast | 47 | Jun 7 | $56,400 | ||
| Caliber Manufacturing | Caliber Manufacturing Co | Retail | South | 9 | Jun 8 | $12,150 | ||
| Summit Crest | Summit Crest Logistics | Wholesale | West | 16 | Jun 9 | $24,000 | ||
| Beacon Tech | Beacon Tech Labs | Online | Midwest | 23 | Jun 10 | $37,950 | ||
| Horizon Ventures | Horizon Ventures Group | Retail | Northeast | 30 | Jun 11 | $9,000 | ||
| Vanguard Systems | Vanguard Systems Corp | Wholesale | South | 37 | Jun 12 | $16,650 |