Re: Approach for paging large dataset

2009-01-05 Thread stephen.sm...@paretopartners.com
I used continuous pagination inside a scrollTable loading 10 rows at a time. I used the client to keep a state of what rows it currently had and simply requested more using rpc when approaching the bottom. I ahd issues with getting the possition of the scrollbar as scrollPanel didnt have a

Approach for paging large dataset

2009-01-02 Thread falcon_whiz
Hi all, I am creating an application where I need to send an array of objects from server to the client side using RPC. the problem is I want the dataset to be broken into pages so that the user isn't overwhelmed with data. Does GWT provide any good approach to solve this problem, or should I

Re: Approach for paging large dataset

2009-01-02 Thread gregor
Check: http://code.google.com/p/google-web-toolkit-incubator/wiki/PagingScrollTable use JDBC (or ORM equivelents) to get pages over GWT RPC - don't clog up HttpSession. regards gregor On Jan 2, 7:14 pm, falcon_whiz sultan.yas...@gmail.com wrote: Hi all,  I am creating an application where I