AdaptableSortState

Overview of current, live, sorting state in grid

TypeScript
export interface

Properties

PropertyTypeDescription
columnSortsColumnSort[]Columns currently being sorted (with direction)
customSortComparersColumnValuesComparer[]Custom Sort Comparers which are currently applied
customSortsCustomSort[]Custom Sorts which are currently applied

Property Details

columnSorts

Columns currently being sorted (with direction)

TypeScript
columnSorts: ColumnSort[];
Property Value

ColumnSort[]

customSortComparers

Custom Sort Comparers which are currently applied

TypeScript
customSortComparers: ColumnValuesComparer[];
Property Value

ColumnValuesComparer[]

customSorts

Custom Sorts which are currently applied

TypeScript
customSorts: CustomSort[];
Property Value

CustomSort[]