The example for Row Grouping will not sort descending
The example for Row Grouping will not sort descending

It appears to me that when a table column is hidden it no longer keeps track of its sorting, so you can set the table to sort the hidden grouped column it will sort ascending but then calling table.order()[0] again returns only the column being sorted not its direction so it will never meet the conditions to sort it descending.
I've not found a way to resolve this.
Answers
Direct link
https://datatables.net/examples/advanced_init/row_grouping.html
Using
table.order()
will only return current table order in an array. Adding[0]
will return the first element of the returned array. To change table the order you will need to pass in the column index and the direction to theorder()
API. See the docs for details.Go to the example you linked to and paste this into the browser's console:
You will see the Office column, index 2, change from ASC to DESC order.
Kevin
Okay yes you're right, that would fix the example.
On that example page if you sort by age and query
order()[0]
it returns [3, 'asc']but if you sort by the row grouping and query
order()[0]
it only returns 2.Doing the same with
order()
and you can see that when sorting by any other column you get an array of an array but for the group sorting you get just a single array.The example code line 31 should simply be:
and get the intended effect of being able to switch back to descending.
Now I understand the problem you are trying to fix. This form of the API uses a 1D array:
Which is a different structure than the 2D array that results from using the
order
option or when clicking a column to sort. To keep the same structure use a 2D array, like this:You can copy this code into the example's console to see that this change works:
@allan will need to update the example code to change from a 1D array to a 2D. Changes are needed only on lines 9 and 12 for the example code.
Kevin
I created this PR for the changes to the example code.
Kevin
PR pulled in - many thanks for it Kevin!
It should be that using a 1D array as a setter doesn't impact the return from
order()
- it is a bug that it does! There is already a fix for this in the 2.3 branch which I hope to release later this month.Allan
I didn't realize there was a bug fix for using 1D arrays in 2.3. I guess the example doesn't need to be changed
Either way you want to go is fine.
Kevin