Docs
CodeRabbit
Cloudflare
Railway
Clerk
WorkOS
OpenRouter
Netlify
AG Grid
SerpAPI
Prisma
Unkey
Electric
Sentry
CodeRabbit
Cloudflare
Railway
Clerk
WorkOS
OpenRouter
Netlify
AG Grid
SerpAPI
Prisma
Unkey
Electric
Sentry
Table API Reference
Column API Reference
Row API Reference
Cell API Reference
Header API Reference
Features API Reference
Static Functions API Reference
Legacy API Reference
Row API Reference

createFacetedRowModel

Function: createFacetedRowModel()

ts
function createFacetedRowModel<TFeatures, TData>(): (table, columnId) => () => RowModel<TFeatures, TData>;
function createFacetedRowModel<TFeatures, TData>(): (table, columnId) => () => RowModel<TFeatures, TData>;

Defined in: features/column-faceting/createFacetedRowModel.ts:18

Creates a memoized faceted row model factory.

The factory reads the relevant table state atoms and options, then returns a row model function used by the table row-model pipeline.

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData = any

Returns

ts
(table, columnId): () => RowModel<TFeatures, TData>;
(table, columnId): () => RowModel<TFeatures, TData>;

Parameters

table

Table<TFeatures, TData>

columnId

string

Returns

ts
(): RowModel<TFeatures, TData>;
(): RowModel<TFeatures, TData>;

Returns

RowModel<TFeatures, TData>