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`](../../index/type-aliases/Cell.md)\<`TFeatures`, `TData`, `unknown`\>>
const cellsById = row_getAllCellsByColumnId(row)