Hello!
I would like to make a groupingStore which cannot sort!
If we use the demo example you should use this code:
store.setSortInfo(new SortState("company", SortDir.ASC));
store.setGroupField("industry");
store.load();
So you must set the sorting because it won't work without the first
row!
In the API (http://extjs.com/deploy/dev/docs/?
class=Ext.data.GroupingStore)
I couldn't find any method for it!
Interestingly if I wrote in the ext-all-debug.js one row:
Ext.data.GroupingStore = Ext.extend(Ext.data.Store, {
remoteGroup : false,
groupOnSort:false,
.
.
.
groupOnSort:true then it works fine!
There is a method for this:
groupingStore.setGroupOnSort(true);
but it isn't working... :(
Plus I am not familiar this type of config options. Is there some good
tutorial howto reach from gwt-ext the configs in ext-all-debug and
making some GropingStore extension?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"GWT-Ext Developer Forum" 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/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---