• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to sort the Generic List of values in a celltable in Java GWT?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I have an absolute panel which contains one Cell table, as shown in the attachment which have list of columns..

Problem: Every time the list is randomly displayed, i want to sort the list. I have used the Collections.sort method like this,

Code:
@Override
public void onSuccess(Method pMethod, List<Met> pListMD) {
Collections.sort(pListMD,new Comparator<Met>() {

@Override
public int compare(Met o1, Met o2) {

return o1.getMetName().compareTo(o2.getMetName());
}
});

Note: Sorting is working fine in IE8 but not in Chrome and Firefox.

Please help me in sorting the list in Chrome and FF also.

Thanks in advance,
Raj

image_r8.png
[Thumbnail for image_r8.png]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic