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
Enterprise
Table API Reference

AngularReactivityFlags

Interface: AngularReactivityFlags

Defined in: angularReactivityFeature.ts:55

Fine-grained configuration for Angular reactivity.

Each key controls whether prototype methods/getters on the corresponding TanStack Table objects are wrapped with signal-aware access.

  • true enables wrapping using the default skip rules.
  • false disables wrapping entirely for that object type.
  • a function allows customizing the skip rules (see SkipPropertyFn).

Example

ts
const table = injectTable(() => {
 // ...table options,
 reactivity: {
   // fine-grained control over which table objects have reactive properties,
   // and which properties are wrapped
   header: true,
   column: true,
   row: true,
   cell: true,
 }
})

Properties

cell

ts
cell: boolean | SkipPropertyFn;

Defined in: angularReactivityFeature.ts:63

Controls reactive wrapping for Cell instances.


column

ts
column: boolean | SkipPropertyFn;

Defined in: angularReactivityFeature.ts:59

Controls reactive wrapping for Column instances.


ts
header: boolean | SkipPropertyFn;

Defined in: angularReactivityFeature.ts:57

Controls reactive wrapping for Header instances.


row

ts
row: boolean | SkipPropertyFn;

Defined in: angularReactivityFeature.ts:61

Controls reactive wrapping for Row instances.