You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: