1
votes

I have the following code:

Ext.define('MyStore', {
    extend: 'Ext.data.Store',
    config: {
        //proxy and domain properties
        model: 'Contact' ,
        autoLoad: true,
        groupField: 'Name'
    }
});

I want to reset the grouping on 'Phone'. How to change grouping of data from store and reload after?

1
Isn't that some Touch code? If so, you should take care of tagging accordingly, Ext and Touch are full of discrepancies. - rixo

1 Answers

6
votes

Use the group method of the store. It will clear the previously set groupers.