How do I sort data by numbers?
How do I sort data by numbers?
concise
Posts: 13Questions: 5Answers: 0
What I mean is this:
My table has data sorted so that the first column has numbered data, such as 5,9,14 etc. All the rest of the columns contain simple text.
Currently datatables sorts the data perfectly from column 1 by numbers but it does so from low to high.
How can I make the opposite happen, i.e. sort the numbered data in column 1 from high to low?
Thanks!
This discussion has been closed.
Answers
I'm pretty sure this is required:
'$('#example').dataTable(
{ "columns": [ null, { "orderSequence": [ "asc" ] }, { "orderSequence": [ "desc", "asc", "asc" ] }, { "orderSequence": [ "desc" ] }, null ]} );
OK i fixed it...
I added this and it all worked: