Ext.Net.StoreBase.GroupBy C# (CSharp) Method

GroupBy() public method

Groups the data by the specified field.
public GroupBy ( string field ) : void
field string The field name by which to sort the store's data
return void
        public virtual void GroupBy(string field)
        {
            RequestManager.EnsureDirectEvent();
            this.Call("groupBy", field);
        }

Same methods

StoreBase::GroupBy ( string field, bool forceRegroup ) : void