using JQuery-JTable, I'm adding support for drag and drop to reorder.
Got drag and drop working based on this answer jQuery JTable how to drag rows
Now I'm concerned that reorder only makes sense if the table is already sorted by the order column. If its sorted by another column, I'm not really sure what the user wants to do.
Was thinking of making the drag/drop support only enabled when the table is sorted by the order column and when sorted on other columns, disable that aspect.
Is there an event that fires when the sort column changes?