I'm working with fooTable and I need to iterate through all the unfiltered rows. I'm using this code to iterate through all the table, but I need to distinguish which ones are not visible because of the filter:
var ft = FooTable.get("#showcase-example-1");
$.each(ft.rows.all, function(i, row){
v=row.val();
console.log("i="+i+" v.id="+v.id);
});
The table has data-filtering="true".
Normally I do my research and find my answers in questions others have asked already, but for this one I'm a little lost.
Hello
I'm working with fooTable and I need to iterate through all the unfiltered rows. I'm using this code to iterate through all the table, but I need to distinguish which ones are not visible because of the filter:
var ft = FooTable.get("#showcase-example-1"); $.each(ft.rows.all, function(i, row){ v=row.val(); console.log("i="+i+" v.id="+v.id); });
The table has data-filtering="true".
Normally I do my research and find my answers in questions others have asked already, but for this one I'm a little lost.
Thank you in advance for your answers.
aguerrag