SmartGWTEE.
We are fetching about 300 records to a ListGrid, through data paging on the server.
When a user scrolls down and up a listgrid, it fetches the data alright, but it doesn't keep the rendered rows, and has to render them again. This takes some time and makes scrolling very slow.
When we increased the drawAheadRatio, it worked better for scrolling forward, but backwards was still a problem.
Is there an option to make the scrolling experience better?
*Auto fetch the next pages even before the user sees the blank rows?
* Keep the rendered rows when you don't see them even at the expense of memory?
* Automatically fetch page after page, and render them as they arrive. This will let users work with the ListGrid, when it will fetches data.
We are fetching about 300 records to a ListGrid, through data paging on the server.
When a user scrolls down and up a listgrid, it fetches the data alright, but it doesn't keep the rendered rows, and has to render them again. This takes some time and makes scrolling very slow.
When we increased the drawAheadRatio, it worked better for scrolling forward, but backwards was still a problem.
Is there an option to make the scrolling experience better?
*Auto fetch the next pages even before the user sees the blank rows?
* Keep the rendered rows when you don't see them even at the expense of memory?
* Automatically fetch page after page, and render them as they arrive. This will let users work with the ListGrid, when it will fetches data.
Comment