This took me forever to find. This button will reset the column sorts on your datatable.
The JS
var oTable = $('.sortable').dataTable(...)
$('#resetsort').click( function () {
oTable.fnSort( [ [0,'asc'] ] );
oTable.fnDraw();
} );The HTML
<button href="#" id="resetsort">reset sort</button>
