Hi Users; How does tapestry do the pagination on a grid? Does it retrieve all the data from the database and then does the pagination on the clientside or does it retrieve a page at a time from the database?
I have used wicket before and all i did was implement something like getIterator(first, count, sortProperty, isAscending), That way, the way the data is retrieved is transparent and i can write a dao that gets each page at a time without loading all the records. Is there a way to achieve the same with tapestry. I mean , is there a way to load a page at a time from the database using tapestry pagination. Kind regards. Josh.