TanStack

CreateTableHookResult

Interface: CreateTableHookResult<TFeatures, TTableComponents, TCellComponents, THeaderComponents>

Defined in: createTableHook.tsx:405

Type Parameters

TFeatures

TFeatures extends TableFeatures

TTableComponents

TTableComponents extends Record<string, ComponentType<any>>

TCellComponents

TCellComponents extends Record<string, ComponentType<any>>

THeaderComponents

THeaderComponents extends Record<string, ComponentType<any>>

Properties

appFeatures

ts
appFeatures: TFeatures;

Defined in: createTableHook.tsx:412

The features object that was passed to createTableHook.


createAppColumnHelper()

ts
createAppColumnHelper: <TData>() => AppColumnHelper<TFeatures, TData, TCellComponents, THeaderComponents>;

Defined in: createTableHook.tsx:417

A column helper pre-bound to TFeatures and the registered components, so the cell/header/footer render props expose the bound components.

Type Parameters

TData

TData extends RowData

Returns

AppColumnHelper<TFeatures, TData, TCellComponents, THeaderComponents>


createAppTable()

ts
createAppTable: <TData>(tableOptions) => AppSolidTable<TFeatures, TData, TTableComponents, TCellComponents, THeaderComponents>;

Defined in: createTableHook.tsx:427

Creates a table with the App* wrapper components and registered tableComponents attached. TData is inferred from the data option.

Type Parameters

TData

TData extends RowData

Parameters

tableOptions

Omit<TableOptions<TFeatures, TData>, "features">

Returns

AppSolidTable<TFeatures, TData, TTableComponents, TCellComponents, THeaderComponents>


useCellContext()

ts
useCellContext: <TValue>() => Cell_Core<TFeatures, any, TValue> & ExtractFeatureMapTypes<TFeatures, Cell_FeatureMap> & TCellComponents & object;

Defined in: createTableHook.tsx:452

Reads the cell provided by the nearest <table.AppCell>, extended with your cellComponents and a context-bound FlexRender.

Type Parameters

TValue

TValue extends unknown = unknown

Returns

Cell_Core<TFeatures, any, TValue> & ExtractFeatureMapTypes<TFeatures, Cell_FeatureMap> & TCellComponents & object


useHeaderContext()

ts
useHeaderContext: <TValue>() => Header_Core<TFeatures, any, TValue> & ExtractFeatureMapTypes<TFeatures, Header_FeatureMap> & THeaderComponents & object;

Defined in: createTableHook.tsx:463

Reads the header provided by the nearest <table.AppHeader> / <table.AppFooter>, extended with your headerComponents and a context-bound FlexRender.

Type Parameters

TValue

TValue extends unknown = unknown

Returns

Header_Core<TFeatures, any, TValue> & ExtractFeatureMapTypes<TFeatures, Header_FeatureMap> & THeaderComponents & object


useTableContext()

ts
useTableContext: <TData>() => AppSolidTable<TFeatures, TData, TTableComponents, TCellComponents, THeaderComponents>;

Defined in: createTableHook.tsx:441

Reads the table provided by the nearest <table.AppTable>. This is the same extended instance createAppTable returns, so the App* components and your tableComponents are available on it.

Type Parameters

TData

TData extends RowData = RowData

Returns

AppSolidTable<TFeatures, TData, TTableComponents, TCellComponents, THeaderComponents>