javierdotnet / gwt-ext

Automatically exported from code.google.com/p/gwt-ext
0 stars 2 forks source link

GroupingStore requires initial SortInfo #463

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
As seen here
http://www.gwt-ext.com/forum/viewtopic.php?f=7&t=1384

The GroupingStore requires an initial SortInfo to be set.
Not setting that gives you problems.

Problem is in some case we don't want to sort the results at first, but we
still want to use the GroupingStore, so the user can sort/group later.

Please fix this, so GroupingStore does not require an initial SortInfo.

Original issue reported on code.google.com by micg...@gmail.com on 23 Dec 2008 at 9:38

GoogleCodeExporter commented 9 years ago
Hi.

It seems that a work around for this is showed here:
http://www.gwt-ext.com/forum/viewtopic.php?f=7&t=569

Calling store.setRemoteSort(true); and store.setRemoteGroup(true);
No we can use the GroupingStore by having no initial sort defined.

So maybe only the JavaDoc must be updated to show this info...

Original comment by micg...@gmail.com on 23 Dec 2008 at 10:08