Problem Solved. Somewhere in my application this was the code
List<Double> list1 = dataTable.getValues(); List<Double> sortList = new ArrayList<Double>(list1); Collections.copy(list1,sortList); Collections.sort(sortList); double max = sortList.get(list1.size() - 1); // giving java.lang.IndexOutOfBoundsExeception Now I have removed unnecessary code ' Collections.copy(....)' and corrected 'sortList.get(sortList.size() - 1);' Problem Solved here. But this was a buggy feature of GWT 2.1 for whatever if there was a exception to be thrown it should have been thrown in hosted mode too. And ....But ... a new problem arises, the webpage is working best in MS Internet Explorer than bit slow in Mozilla and not working in Chrome. Anyway I ll make a new post for this issue -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
