|
| Hi Nagelingam,
you can use bean Comparator to sort the organization name like this:
sorting:
BeanComparator comp = new BeanComparator("orgName"); Collections.sort(list, comp);
reverse order:
BeanComparator comp = new BeanComparator("orgName"); Collections.sort(list, comp); Collections.reverse(list);
Hope this could resolve your issue. If not, please feel free to contact us.
Thanks,
Gnaniyar Zubair zubair@mpowerglobal.com |
| Please sign in to flag this as inappropriate. |