How do I get the list of columns on which sorting is applied, in ag-grid. There is an api (onSortChanged) and an event (sortChanged). But neither is helpful in this scenario.
ag-grid: Getting list of columns on which sorting is applied
8.8k Views Asked by Shardul At
4
There are 4 best solutions below
0

You can check the status of particular grid column - sort
status etc using :-
params.columnApi.getColumnState();
The default value is null
. "asc" or "desc" are other sort status.
You can use
gridApi.getSortModel()
, which returns you an array containing all column Ids and sort direction like below.