I am using Retool on-prem 3.300.14-stable. When I have filters on a table, how can I see, using JavaScript, the number of rows that are visble and identify what rows are visible and those that are not displayed. I cannot see and properties or methods on the table to access this.
Use a JavaScript block (not transformer), with:
var visible = 0;
const d2 = await tableCustomers.getDisplayedData();
if (d2 !== null) {
visible = d2.length;
}
return visible;