[code]
oTable.fnSettings().aaSorting; // where oTable is the table instance
[/code] aaSorting is a 2D array. The inner arrays are using for each column and each of those has three elements. The first is for the column index, the second the sorting direction and the third an internal data store.
Replies
oTable.fnSettings().aaSorting; // where oTable is the table instance
[/code]
aaSorting is a 2D array. The inner arrays are using for each column and each of those has three elements. The first is for the column index, the second the sorting direction and the third an internal data store.
Allan