X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..c8256059947f3aa8f5b0a9a2acf55e2142bb4742:/docs/source/GroupingStore.html diff --git a/docs/source/GroupingStore.html b/docs/source/GroupingStore.html index e54697a3..31d15bb8 100644 --- a/docs/source/GroupingStore.html +++ b/docs/source/GroupingStore.html @@ -7,7 +7,7 @@
/*! - * Ext JS Library 3.2.0 + * Ext JS Library 3.2.1 * Copyright(c) 2006-2010 Ext JS, Inc. * licensing@extjs.com * http://www.extjs.com/license @@ -177,7 +177,7 @@ Ext.data.GroupingStore = Ext.extend(Ext.data.Store, { } else if (fieldName == undefined) { //we preserve the existing sortInfo here because this.sort is called after //clearGrouping and there may be existing sorting - sorters = [this.sortInfo]; + sorters = this.sortInfo ? [this.sortInfo] : []; } else { //TODO: this is lifted straight from Ext.data.Store's singleSort function. It should instead be //refactored into a common method if possible