software sorting question
software sorting question

how to programmatically determine at an arbitrary point in time by which column and how the table is sorted?
How to programmatically sort a table by a specific column?which event is directly related to the user changing the table sort
This discussion has been closed.
Replies
You can find all the docs here:
https://datatables.net/reference/index
Specifically you can use the
order()
API to get and set the table order. Theorder
event is triggered when the table is sorted.Kevin