I don't want datatables.net to do any sorting(it is already sorted through my sql query). However can I tell datables.net that these columns are sorted by ascending or descending but not have it actually do any sorting.
What you can do is to disable sorting in the DataTable (bSort: false) and then use a little bit of jQuery to add the classes ("sorting_asc" and "sorting_desc") to the TH elements that you already know are being sorted on.
Replies
Allan