I've been trying to get hold of the hidden column data for all filtered rows, when iterating through them.
var table = $('#'+dataTableSelector).dataTable();
table.$('tr', {"filter":"applied"}).each( function () {
var row = this;
});
Obviously row refers to the TR instance of the datatable; However, if I access the children elements of the TR, these only contain the visible columns for the row in question.
I want to access all data for the row in question, but when I try to reference the datatable, or table.row(this).node() within the each function it doesn't work - row is not a function.
How can I get all data for the rows for which filters are applied?