Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
The paging for a Table control is not working when the table is filled from the onGet() method.
In this case, the page numbers/links are displayed, and click-able, but always remains page 1 active.
How to reproduce:
1. use the click-examples
2. in TablePaging, create an onGet() method.
3. move from the onIntit() method the following lines to the new onGet() :
=====
List customers = CustomerDAO.getCustomersSortedByName();
table.setRowList(customers);
=====
3. Now see yourself.