How can I disable the remote grouping of a grid.
I want to use the function
Code:
features: [{ftype:'grouping'}],
But I dont want the the group to be done by the backend. Only the present results in the store.
Capture.JPG
The store looks like below. Need to keep remoteSort and remoteFilter.
Cannot find something lime remoteGroup.
Code:
var myStore = Ext.create('Ext.data.Store', {
model: gridModel,
pageSize: (searchParams.records_per_page != undefined)?searchParams.records_per_page:50,
autoLoad: true,
remoteSort: true,
remoteFilter: true,
proxy: {
type: 'ajax',
extraParams: searchParams,
url: util.ConfigData.cgiUrl,
reader: {
type: 'json',
rootProperty: 'Rows',
totalProperty: 'TotalRowCount'
}
}
});