I need to sort the list based on MyDto.name in the client GWT code. I'm currently trying to do this ...
Collections.sort(_myDtos, new Comparator<MyDto>() { @Override public int compare(MyDto o1, MyDto o2) { return o1.getName().compareTo(o2.getName()); } });
Unfortunately, sorting is not what I expected, because anything is in upper case before lower case. For example, ESP comes before aESP.
source share