Defined in: features/row-sorting/rowSortingFeature.types.ts:216
optional autoResetSorting: boolean;Defined in: features/row-sorting/rowSortingFeature.types.ts:223
Resets sorting to its initial state when the data option changes.
This is disabled by default. autoResetAll overrides this option when it is explicitly set.
optional enableMultiRemove: boolean;Defined in: features/row-sorting/rowSortingFeature.types.ts:227
Allows multi-sort toggles to remove a column from sorting state.
optional enableMultiSort: boolean;Defined in: features/row-sorting/rowSortingFeature.types.ts:231
Enables/Disables multi-sorting for the table.
optional enableSorting: boolean;Defined in: features/row-sorting/rowSortingFeature.types.ts:235
Enables/Disables sorting for the table.
optional enableSortingRemoval: boolean;Defined in: features/row-sorting/rowSortingFeature.types.ts:241
Enables/Disables the ability to remove sorting for the table.
optional isMultiSortEvent: (e) => boolean;Defined in: features/row-sorting/rowSortingFeature.types.ts:245
Pass a custom function that will be used to determine if a multi-sort event should be triggered. It is passed the event from the sort toggle handler and should return true if the event should trigger a multi-sort.
unknown
boolean
optional manualSorting: boolean;Defined in: features/row-sorting/rowSortingFeature.types.ts:249
Enables manual sorting for the table. If this is true, you will be expected to sort your data before it is passed to the table. This is useful if you are doing server-side sorting.
optional maxMultiSortColCount: number;Defined in: features/row-sorting/rowSortingFeature.types.ts:253
Set a maximum number of columns that can be multi-sorted.
optional onSortingChange: OnChangeFn<SortingState>;Defined in: features/row-sorting/rowSortingFeature.types.ts:259
Called with an updater when sorting state changes. Pair this with state.sorting when using external state; external atoms can own the slice without this callback.
optional sortDescFirst: boolean;Defined in: features/row-sorting/rowSortingFeature.types.ts:263
If true, all sorts will default to descending as their first toggle state.