MCPcopy Index your code
hub / github.com/TanStack/table / isRowSelected

Function isRowSelected

packages/table-core/src/features/RowSelection.ts:632–637  ·  view source on GitHub ↗
(
  row: Row<TData>,
  selection: Record<string, boolean>,
)

Source from the content-addressed store, hash-verified

630}
631
632export function isRowSelected<TData extends RowData>(
633 row: Row<TData>,
634 selection: Record<string, boolean>,
635): boolean {
636 return selection[row.id] ?? false
637}
638
639export function isSubRowSelected<TData extends RowData>(
640 row: Row<TData>,

Callers 3

RowSelection.tsFile · 0.85
recurseRowsFunction · 0.85
isSubRowSelectedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected