Попробуйте установить их в хранилище:
remoteGroup:true,
remoteSort: true
И в вашем sql или что вы используете для сортировки данных, сначала группируя поля.
gridDataStoreObj = new Ext.data.GroupingStore(
{
remoteGroup:true,
remoteSort: true,
proxy: new Ext.data.HttpProxy({url: 'index.php' }),
method:'POST',
groupField:'brandName',
...
sortInfo:{field: 'id', direction: "ASC"},
});
На сервере:
select * from table order by brandName, id
Это должно сортировать группы сами.