function row_getVisibleCellsByColumnId<TFeatures, TData>(row): Record<string, Cell<TFeatures, TData, unknown>>;function row_getVisibleCellsByColumnId<TFeatures, TData>(row): Record<string, Cell<TFeatures, TData, unknown>>;Defined in: features/column-visibility/columnVisibilityFeature.utils.ts:191
Builds a lookup map of this row's visible cells keyed by column id.
Hidden columns are omitted from the map.
TFeatures extends TableFeatures
TData extends RowData
Row<TFeatures, TData>
Record<string, Cell<TFeatures, TData, unknown>>
const visibleCellsById = row_getVisibleCellsByColumnId(row)const visibleCellsById = row_getVisibleCellsByColumnId(row)