Does the jQuery DataTables plugin support the concept of "unsorted" or "natural sort order".
That is -- I have a table where the order that the rows are printed out is significant.
<tr><td>One</td></tr>
<tr><td>Two</td></tr>
<tr><td>Three</td></tr>
There are times where users will want to sort these alphabetically. There are also times where they'll want to see them in the order that they appear in the HTML source.
Short of creating a specific numerical column that tracks sort order
<tr><td>1</td><td>One</td></tr>
<tr><td>2</td><td>Two</td></tr>
<tr><td>3</td><td>Three</td></tr>
Does the DataTables plugin have support for a "unordered" sort. The behavior I'm looking for (that I've seen in other computer user interfaces) is where one click sorts one way, a second click sorts the other, and a third click restores the "unsorted" state.