By infinite scrolling, I mean I initially load a few child widgets, and as the user scrolls down lazily load more to fill it out.
Any ideas appreciated.
(ideally would like something for GWT 1.6 and 1.5)
|
4
|
By infinite scrolling, I mean I initially load a few child widgets, and as the user scrolls down lazily load more to fill it out. Any ideas appreciated. (ideally would like something for GWT 1.6 and 1.5)
|
|||
|
|
|
|
Hi, try something like this:
What this code does: it creates a ScrollPanel and adds a ScrollHandler to it. In the ScrollHandler the scrollheight gets compared to the height of the panel and it then adds another child to the panel. I haven't tested it because I'm wtriting this on a netbook and don't have an IDE on it. Hope that helps Chris |
||||
|
|
|
I was able to confirm the following works in GWT 1.5 at least:
Note the interesting bits are the calculations of the positions. |
||
|
|