mirror of
https://github.com/DataTables/DataTables.git
synced 2025-02-20 18:54:15 +01:00
- It is possible at the moment to use rows().data() to get the data for the table, you can use rows().data( { order: 'index' } ); to get the data in index order - I suspect a reasonably common use when working with the data set (at least, I use it that way!) and its a but clumsy to write that way, particularly compared to the old fnGetData method. So the new data() method is a short cut for `rows().data( { order: 'index' } ).flatten()` to get the data set for the host table(s).