AdaptableSortState

Overview of current, live, sorting state in grid

TypeScript
export interface

Properties

PropertyDescription
columnSortsColumns currently being sorted (with direction)
customSortComparersCustom Sort Comparers which are currently applied
customSortsCustom 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[]