JPAContainer + Filters + Table - checking container size

Hi,

Is there an event where I can find out how many items are visible on a table with JPAContainer after applying a Filter? I wanted to change the Table’s caption with ‘People - [N]
Items’ where N is the number of rows on the table.

Thanx
Bruno

Hi.

You can askt the table for size.

int count = myTable.size();

This method asks the underlaying container how many items are in the container respecting your filters.

Christoph