Defined in: core/rows/coreRowsFeature.types.ts:130
TFeatures extends TableFeatures
TData extends RowData
getMaxSubRowDepth: () => number;Defined in: core/rows/coreRowsFeature.types.ts:138
Returns the deepest structural row depth in the core row model. Root rows are depth 0, direct sub-rows are depth 1, and so on.
number
getRow: (id, searchAll?) => Row<TFeatures, TData>;Defined in: core/rows/coreRowsFeature.types.ts:153
Returns the row with the given ID.
string
boolean
Row<TFeatures, TData>
getRowId: (_, index, parent?) => string;Defined in: core/rows/coreRowsFeature.types.ts:149
Returns the row id for a given row.
TData
number
Row<TFeatures, TData>
string
getRowsInDisplayOrder: () => Row<TFeatures, TData>[];Defined in: core/rows/coreRowsFeature.types.ts:145
Returns the rows in the current display order and assigns their display indexes. When expanded rows bypass pagination, expanded descendants are included in this order. This is the memoized source for row.getDisplayIndex().
Row<TFeatures, TData>[]