function table_getRowId<TFeatures, TData>(
originalRow,
table,
index,
parent?): string;function table_getRowId<TFeatures, TData>(
originalRow,
table,
index,
parent?): string;Defined in: core/rows/coreRowsFeature.utils.ts:215
Resolves the stable id for a row.
options.getRowId wins when provided. Otherwise root rows use their index and child rows append their index to the parent id, such as 0.2.
TFeatures extends TableFeatures
TData extends RowData
TData
Table_Internal<TFeatures, TData>
number
Row<TFeatures, TData>
string
const id = table_getRowId(originalRow, table, index, parentRow)const id = table_getRowId(originalRow, table, index, parentRow)