* Get the original indexes in their current order * * @param dt DataTable being operated on - must be a single table instance * @returns Original indexes in current order
(dt)
| 17183 | * @returns Original indexes in current order |
| 17184 | */ |
| 17185 | function getOrder(dt) { |
| 17186 | return dt.settings()[0].aoColumns.map(function (col) { |
| 17187 | return col._crOriginalIdx |
| 17188 | }) |
| 17189 | } |
| 17190 | /** |
| 17191 | * Manipulate a header / footer array in DataTables settings to reorder |
| 17192 | * the columns. |
no test coverage detected