function row_getAllCellsByColumnId<TFeatures, TData>(row): Record<string, Cell<TFeatures, TData, unknown>>;function row_getAllCellsByColumnId<TFeatures, TData>(row): Record<string, Cell<TFeatures, TData, unknown>>;Defined in: core/rows/coreRowsFeature.utils.ts:191
Builds a lookup map of this row's cells keyed by column id.
This is the static implementation behind row.getAllCellsByColumnId().
TFeatures extends TableFeatures
TData extends RowData
Row<TFeatures, TData>
Record<string, Cell<TFeatures, TData, unknown>>
const cellsById = row_getAllCellsByColumnId(row)const cellsById = row_getAllCellsByColumnId(row)