Possible to not sort but have the icons showing sorted?

Possible to not sort but have the icons showing sorted?

chobo2chobo2 Posts: 23Questions: 2Answers: 0
edited October 2011 in General
Hi

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.

Thanks

Replies

  • allanallan Posts: 63,534Questions: 1Answers: 10,475 Site admin
    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.

    Allan
This discussion has been closed.