Hi Pat,

Thanks for the reply.

Just pure text. no images.

The Grid is rendering 2000 rows using a pagination grid panel.

it makes an RPC call to the server to retrieve the records and this is
how I am able to render it.

(i dont know how to use the code tag here in the forum, sorry)

<CODE>
                if (getStore() != null) {
                        pagingToolbar.unbind(getStore());
                        getStore().removeAll();
                }
                PagingMemoryProxy proxy = new PagingMemoryProxy(data);
                ArrayReader reader = new ArrayReader(recordDef);
                Store store = new Store(proxy, reader);

                pagingToolbar.bind(store);

                store.load(0, pagingToolbar.getPageSize());

                reconfigure(store, new ColumnModel(columns));

                setStore(store);
</CODE>

On Apr 20, 1:12 am, Patrizio De Michele <[email protected]> wrote:
> just to exactly understand your problem.....what is contained in the
> columns??
>
> images?? viewing the showcases i didn't see such performance limits...
>
> but i have to admit i used grid only one time and in a very simple way....
>
> maybe posting your code it's better.....anyway we can't help you...
>
> bye pat
>
> 2009/4/19 Arji <[email protected]>
>
>
>
> > Hi all,
>
> > I've searched all the GWT-EXT forums, and I can't seem to find a
> > proper solution.
>
> > Here is my problem, I have 3000 records for a Grid that has 6 columns
> > and Paging, and only shows 100 per page.
>
> > The server response is very very fast, under 1 second. But the
> > rendering part is so slow.
>
> > The other suggestion was change the implementation in the Database
> > side where you will only retrieve 100 data, and create the illusion of
> > Pagination by fetching every time in the database 100 record at a
> > time.  I'm hesitant to use this method since I want to have a
> > separation of GWT from the database side, and I dont want also to
> > recreate other database methods just to use this kind of
> > implementation.
>
> > Is there any other way to improve the performance? or the GWT-EXT Grid
> > really cant have that performance?
>
> > P.S.
> > I also saw someone posted a same question in other forums but no one
> > tried to answer, I just hope somebody out there can help....
>
> > Thanks so much.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"GWT-Ext Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to