Re: Celltable performance issue

2012-06-05 Thread kim young ill
check out the showcase this: https://developers.google.com/web-toolkit/doc/latest/DevGuideUiCellWidgets#data-provider On Mon, Jun 4, 2012 at 1:23 PM, lucky lucky.begum...@gmail.com wrote: Could you please provide me the sample example for this? -- You received this message because

Re: Celltable performance issue

2012-06-04 Thread lucky
Could you please provide me the sample example for this? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/ubpiMGBB0FUJ. To post to this group,

Celltable performance issue

2012-06-01 Thread lucky
Hi I am using GWT 2.4 version. And using Celltable with pager and ListDataProvider to display the data. I have large amount of data contains(9000+) records(rows and 10 colums) to display. when I am trying to display these records my application becomes unresponsive. Please let me know how can

Re: Celltable performance issue

2012-06-01 Thread Jens
I would guess you load the 9000+ records from the server using GWT-RPC? If so, its not CellTable thats slow but its the GWT-RPC deserialization that occurs when you receive the server response with the 9000+ records. To speed things up you could use an AsyncDataProvider and only load the

Re: Celltable performance issue

2012-06-01 Thread lucky
I am using RequestFactory not a GWT_RPC. On Fri, Jun 1, 2012 at 2:50 PM, Jens jens.nehlme...@gmail.com wrote: I would guess you load the 9000+ records from the server using GWT-RPC? If so, its not CellTable thats slow but its the GWT-RPC deserialization that occurs when you receive the server

Re: Celltable performance issue

2012-06-01 Thread Jens
Although RequestFactory should be faster than GWT-RPC when it comes to converting the server result string back to the object graph, 9000+ records are maybe too much for RequestFactory as well. You could verify it by just loading the data without putting it into the CellTable / DataProvider.

Re: Celltable performance issue

2012-06-01 Thread lucky
if i load less amount of data it is working time but if i want to load 3000+ records it is loading but taking time when i search it in the google i found that we can use pushApi but i dont know how to use that could you please tell me can we use this.If so, How can we use this? Thanks On Fri,

Re: Celltable performance issue

2012-06-01 Thread Thomas Broyer
On Friday, June 1, 2012 11:42:13 AM UTC+2, lucky wrote: if i load less amount of data it is working time but if i want to load 3000+ records it is loading but taking time when i search it in the google i found that we can use pushApi but i dont know how to use that could you please tell me