Is there an easy way to get the count of rows selected in a JPAContainer after a filter is applied?
Hey Philip,
For the item count, you can use table.size(). For the selection count, you can use (if multiselect is enabled), ((Set) table.getValue).size();
Thanks Joacim,
I did not know if the count or size would be right for a filtered table when using JPAContainer, but it appears to update the size based upon the filtered table. Thanks again!