Reverse the order of a sort using DataTables?

If you want to apply a different sorting type you should use aoColumns like this.

If you want to apply a different sorting type you should use aoColumns like this: "aoColumns": null, null, null, { "sType": "natural" }, null To use natural sorting you should do the following things: include the function for the natural sorting from this page define your own sorting function like this: jQuery.fn.dataTableExt. OSort'natural-asc' = function(a,b) { return naturalSort(a,b); }; jQuery.fn.dataTableExt. OSort'natural-desc' = function(a,b) { return naturalSort(a,b) * -1; }; use aoColumns like indicated above -in any case if you post an example on jsfiddle.Net it's easier to help.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions