function table_getRow<TFeatures, TData>(
table,
rowId,
searchAll?): Row<TFeatures, TData>;function table_getRow<TFeatures, TData>(
table,
rowId,
searchAll?): Row<TFeatures, TData>;Defined in: core/rows/coreRowsFeature.utils.ts:241
Looks up a row by id from the current or full row model.
By default this searches table.getRowModel(). Passing searchAll searches the pre-pagination model first, then falls back to the core model.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
string
boolean
Row<TFeatures, TData>
const row = table_getRow(table, rowId, true)const row = table_getRow(table, rowId, true)