Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-17 Thread Davis Ford
Hi, you are correct, I don't do client/server pagination. I did not want to do this. It adds another layer of complexity that I didn't want. I happen to know that my app will only return results in the hundreds to lower thousands range, and I found a perfect match between this and the PagingScro

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-17 Thread Yozons Support on Gmail
I think the example you have also loads all rows and doesn't use "page fetching" to load only the first page, waiting until they click next page to actually retrieve additional rows. It seems the example gets all rows, so the sorting is all local and works on all data, no additional fetching takes

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-17 Thread Davis Ford
Hi Chythanya -- take a look at the Live Demo on that page. I do have paging in place with the PagingOptions, and sorting works just fine with it. Regards, Davis On Tue, Nov 17, 2009 at 1:28 AM, shloka wrote: > Davis, thanks for the post ... > In your example Are you using the pagination also?

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-16 Thread shloka
Davis, thanks for the post ... In your example Are you using the pagination also? How do you maintain sorted data between the pages?? I have implemented sorting almost like what you have done but i am facing problem in maintaining the sorted data with the pagination. say i have 10 rows and i m

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-16 Thread Davis Ford
Yes, I have done this in some cases. You can do this with the methods from AbstractColumnDefinition

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-16 Thread Dazza
On Nov 16, 3:27 pm, Davis Ford wrote: > Hi, here's a blog post I made that shows how I'm using the widget.  It may > help if you are still looking for a solution. > > http://zenoconsulting.wikidot.com/blog:17 > > Regards, > Davis > Very nice article. Ha

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-15 Thread Davis Ford
Hi, here's a blog post I made that shows how I'm using the widget. It may help if you are still looking for a solution. http://zenoconsulting.wikidot.com/blog:17 Regards, Davis On Wed, Nov 4, 2009 at 2:40 AM, shloka wrote: > > Thanks Davis ! > > Yes,

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-13 Thread Norman Maurer
We using the Table in hupa ( http://James.Apache.org/hupa) . It Works very well so far . We extend it to support drag-and-drop and refetching data After deletion to fill the page. Bye Norman 2009/11/13, kavitha d : > On 11/13/09, jay wrote: >> >> We've been shipping our product with PagingScroll

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-13 Thread kavitha d
On 11/13/09, jay wrote: > > We've been shipping our product with PagingScrollTable for the past 4 > months. We've been very happy with the widget. We've made a lot of > changes around it to get more functionality and (in our opinion) > better styling. > > We've not heard any complaints from our us

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-13 Thread jay
We've been shipping our product with PagingScrollTable for the past 4 months. We've been very happy with the widget. We've made a lot of changes around it to get more functionality and (in our opinion) better styling. We've not heard any complaints from our users about performance or anything else

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-12 Thread Yozons Support on Gmail
Thanks. I'll spend more time to investigate this option, then, since it likely has improved since a lot of the earlier gripes. More examples and better documentation are always the answer, but I know how hard it is to have it all :) -- You received this message because you are subscribed to the

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-12 Thread Davis Ford
I'm going to production with PagingScrollTable from incubator. I wrote some unit tests around it and have had no issues with it, but more importantly, I've had this app running live for several months in a dev/test environment, and it has worked flawlessly across browsers (IE 6, 7, 8, Firefox 3.*,

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-12 Thread Open eSignForms
What are people's impressions of these widgets in production use? It seems I've read a lot of negative stuff about PagingScrollTable, and it's clear that sorting does not work, which is funny when you run their demo since it touts sorting, yet not a single column sorts correctly. I've not had a c

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-03 Thread shloka
Thanks Davis ! Yes,I saw the Bug u have reported. I tried with gwtlib.jar and sample code given for this in the link http://code.google.com/p/gwtlib/ They use PagingTable and write the comparator code for sorting... The approach is same as you have suggested... So now i have to decide weather

Re: incubator's PagingScrollTable(pagination+Sorting)

2009-11-03 Thread Davis Ford
Sorting does seem to work out of the box. I ended up building my own comparators. Here's an example of what I did. I was going to write up a longer blog entry on this -- just haven't had time. Let's say I have a simple object like this for my RowValue: public class Person { private final St

incubator's PagingScrollTable(pagination+Sorting)

2009-11-03 Thread shloka
Hi All, I am trying to implement pagination and sorting using the Incubator's paging scroll table .Could do pagination but Sorting is not happening. Please pool in some ideas to solve this.Any guidence is highly appreciated. Thanks in Advance. --~--~-~--~~~---~--~-