TanStack
Cell API Reference

AppCellContext

Type Alias: AppCellContext<TFeatures, TData, TValue, TCellComponents>

ts
type AppCellContext<TFeatures, TData, TValue, TCellComponents> = object;

Defined in: createTableHook.tsx:40

Enhanced CellContext with pre-bound cell components. The cell property includes the registered cellComponents.

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

TValue

TValue extends CellData

TCellComponents

TCellComponents extends Record<string, ComponentType<any>>

Properties

cell

ts
cell: Cell<TFeatures, TData, TValue> & TCellComponents & object;

Defined in: createTableHook.tsx:46

Type Declaration

FlexRender()
ts
FlexRender: () => JSXElement;
Returns

JSXElement


column

ts
column: Column<TFeatures, TData, TValue>;

Defined in: createTableHook.tsx:48


getValue

ts
getValue: CellContext<TFeatures, TData, TValue>["getValue"];

Defined in: createTableHook.tsx:49


renderValue

ts
renderValue: CellContext<TFeatures, TData, TValue>["renderValue"];

Defined in: createTableHook.tsx:50


row

ts
row: Row<TFeatures, TData>;

Defined in: createTableHook.tsx:51


table

ts
table: Table<TFeatures, TData>;

Defined in: createTableHook.tsx:52