Skip to content

RevoGrid Documentation v4.23.20 / AfterSortingApplyEvent

Type Alias: AfterSortingApplyEvent

ts
type AfterSortingApplyEvent: {
  sorting: SortingOrder;
  sortingColumns: SortingColumnMap;
  sortingOrder: SortingColumnOrder;
  types: DimensionRows[];
};

Sorting information emitted after sorting is applied.

Type declaration

NameTypeDescriptionDefined in
sortingSortingOrderFinal active sorting order per column property.src/plugins/sorting/sorting.types.ts:55
sortingColumnsSortingColumnMapColumn metadata indexed by sorted column property.src/plugins/sorting/sorting.types.ts:59
sortingOrderSortingColumnOrderActive sorting priority in click/config insertion order.src/plugins/sorting/sorting.types.ts:63
typesDimensionRows[]Row stores affected by the sorting run.src/plugins/sorting/sorting.types.ts:67

Defined in

src/plugins/sorting/sorting.types.ts:51