TanStack
Table API Reference

SolidTable

Type Alias: SolidTable<TFeatures, TData>

ts
type SolidTable<TFeatures, TData> = Table<TFeatures, TData> & object;

Defined in: createTable.ts:19

Type Declaration

FlexRender

ts
FlexRender: typeof FlexRender;

Convenience FlexRender component attached to the table instance for rendering headers, cells, or footers with custom markup. Mirrors the table.FlexRender API exposed by createTableHook's createAppTable.

Example

ts
<table.FlexRender header={header} />
<table.FlexRender cell={cell} />
<table.FlexRender footer={footer} />

Subscribe()

ts
Subscribe: (props) => JSX.Element;

Creates a reactive render boundary. The child function reads the table atoms it needs, so Solid only tracks those atom reads.

Parameters

props
children

(atoms) => JSX.Element

Returns

JSX.Element

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData