I am trying to create a custom ordering system to sort the rows with a special alpha numberic format
The data in the column is a distance call out such as "1.79 mi" , "10.21 mi" or "9.21 mi"
My issue is that when I sort desc it will put the 9.21 after the 10.21.
I am using the following code.
aaSorting = [[3,'desc']];
I am assuming I have to create special definitions using aoColumnDefs and sType but I cant seem to figure them out.