function table_setExpanded<TFeatures, TData>(table, updater): void;function table_setExpanded<TFeatures, TData>(table, updater): void;Defined in: features/row-expanding/rowExpandingFeature.utils.ts:62
Routes an expanded-state updater through the table's expanded change handler.
The updater may be true, a row-id map, or a function of the previous expanded state, matching the instance table.setExpanded behavior.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
void
table_setExpanded(table, (old) => ({ ...old, [rowId]: true }))table_setExpanded(table, (old) => ({ ...old, [rowId]: true }))