Defined in: features/row-expanding/rowExpandingFeature.types.ts:37
TFeatures extends TableFeatures
TData extends RowData
optional autoResetExpanded: boolean;
Defined in: features/row-expanding/rowExpandingFeature.types.ts:44
Enable this setting to automatically reset the expanded state of the table when expanding state changes.
optional enableExpanding: boolean;
Defined in: features/row-expanding/rowExpandingFeature.types.ts:48
Enable/disable expanding for all rows.
optional getIsRowExpanded: (row) => boolean;
Defined in: features/row-expanding/rowExpandingFeature.types.ts:52
If provided, allows you to override the default behavior of determining whether a row is currently expanded.
Row<TFeatures, TData>
boolean
optional getRowCanExpand: (row) => boolean;
Defined in: features/row-expanding/rowExpandingFeature.types.ts:56
If provided, allows you to override the default behavior of determining whether a row can be expanded.
Row<TFeatures, TData>
boolean
optional manualExpanding: boolean;
Defined in: features/row-expanding/rowExpandingFeature.types.ts:60
Enables manual row expansion. If this is set to true, getExpandedRowModel will not be used to expand rows and you would be expected to perform the expansion in your own data model. This is useful if you are doing server-side expansion.
optional onExpandedChange: OnChangeFn<ExpandedState>;
Defined in: features/row-expanding/rowExpandingFeature.types.ts:64
This function is called when the expanded table state changes. If a function is provided, you will be responsible for managing this state on your own. To pass the managed state back to the table, use the tableOptions.state.expanded option.
optional paginateExpandedRows: boolean;
Defined in: features/row-expanding/rowExpandingFeature.types.ts:68
If true expanded rows will be paginated along with the rest of the table (which means expanded rows may span multiple pages). If false expanded rows will not be considered for pagination (which means expanded rows will always render on their parents page. This also means more rows will be rendered than the set page size)