Defined in: features/column-grouping/columnGroupingFeature.types.ts:35
getCanGroup: () => boolean;Defined in: features/column-grouping/columnGroupingFeature.types.ts:39
Checks whether this column can currently be grouped.
boolean
getGroupedIndex: () => number;Defined in: features/column-grouping/columnGroupingFeature.types.ts:43
Finds this column's position in the ordered grouping state.
number
getIsGrouped: () => boolean;Defined in: features/column-grouping/columnGroupingFeature.types.ts:47
Checks whether this column id is present in grouping state.
boolean
getToggleGroupingHandler: () => () => void;Defined in: features/column-grouping/columnGroupingFeature.types.ts:51
Returns a function that toggles the grouping state of the column. This is useful for passing to the onClick prop of a button.
(): void;void
toggleGrouping: () => void;Defined in: features/column-grouping/columnGroupingFeature.types.ts:55
Toggles the grouping state of the column.
void