I\'m using jQuery DataTables and I would like to know if there\'s possible to disable automatic sorting on the first column of the table?
My code looks like this:
<
Set the aaSorting option to an empty array. It will disable initial sorting, whilst still allowing manual sorting when you click on a column.
"aaSorting": []
The aaSorting array should contain an array for each column to be sorted initially containing the column's index and a direction string ('asc' or 'desc').