Docs
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
Neon
WorkOS
Clerk
Convex
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
Neon
WorkOS
Clerk
Convex
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
Table API Reference
Column API Reference
Row API Reference
Cell API Reference
Header API Reference
Features API Reference
Legacy API Reference
Enterprise

CreateRowModel_Filtered

Interface: CreateRowModel_Filtered<TFeatures, TData>

Defined in: features/column-filtering/columnFilteringFeature.types.ts:200

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Properties

filteredRowModel()?

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

Defined in: features/column-filtering/columnFilteringFeature.types.ts:209

If provided, this function is called once per table and should return a new function which will calculate and return the row model for the table when it's filtered.

  • For server-side filtering, this function is unnecessary and can be ignored since the server should already return the filtered row model.
  • For client-side filtering, this function is required. A default implementation is provided via any table adapter's { getFilteredRowModel } export.

Parameters

table

Table<TFeatures, TData>

Returns

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

RowModel<TFeatures, TData>