I use this line of code to get the filtered data from a datatable.
var aaData = settings.$dataTable._('tr', { "filter": "applied" });
I want the paging to apply so that I get only the rows that are currently displayed, based on filtering and paging.
How can I do this? Thank you very much!