Defined in: types/Column.ts:46
Omit<Column_Core<TFeatures, TData, TValue>, "columnDef" | "table">
TFeatures extends TableFeatures
TData extends RowData
TValue = unknown
optional accessorFn: AccessorFn<TData, TValue>;Defined in: core/columns/coreColumnsFeature.types.ts:15
The resolved accessor function to use when extracting the value for the column from each row. Will only be defined if the column def has a valid accessor key or function defined.
Omit.accessorFncolumnDef: ColumnDefBase_All<TFeatures, TData, TValue>;Defined in: types/Column.ts:51
columns: Column<TFeatures, TData, TValue>[];Defined in: core/columns/coreColumnsFeature.types.ts:23
The child column (if the column is a group column). Will be an empty array if the column is not a group column.
Omit.columnsdepth: number;Defined in: core/columns/coreColumnsFeature.types.ts:27
The depth of the column (if grouped) relative to the root column def array.
getFlatColumns: () => Column<TFeatures, TData, TValue>[];Defined in: core/columns/coreColumnsFeature.types.ts:53
Flattens this column and every descendant column into a single array.
Column<TFeatures, TData, TValue>[]
Omit.getFlatColumnsgetLeafColumns: () => Column<TFeatures, TData, TValue>[];Defined in: core/columns/coreColumnsFeature.types.ts:58
Collects the terminal leaf columns below this column, or the column itself when it has no children.
Column<TFeatures, TData, TValue>[]
Omit.getLeafColumnsid: string;Defined in: core/columns/coreColumnsFeature.types.ts:34
The resolved unique identifier for the column resolved in this priority:
A manual id property from the column def
The accessor key from the column def
The header string from the column def
optional parent: Column<TFeatures, TData, TValue>;Defined in: core/columns/coreColumnsFeature.types.ts:38
The parent column for this column. Will be undefined if this is a root column.
Omit.parenttable: Table_Internal<TFeatures, TData>;Defined in: types/Column.ts:52