im currently implementing remote grouping in grid panel. it works gine when i click on group by this feild. But whn i click on show in groups how do i clear grouping. It is currently noe clearing the groups HERE is my code when i click on show in groups the group filed is being sent to server side.
var store = new FMP.AspNetJsonStore({ fields: [
{ name: 'Image' },
{ name: 'StatusName' },
{ name: 'Incident' },
{ name: 'ModelName' },
{ name: 'PrinterSerialNumber' },
{ name: 'InScope' },
{ name: 'Black', type: 'float' },
{ name: 'Cyan', type: 'float' },
{ name: 'Magenta', type: 'float' },
{ name: 'Yellow', type: 'float' },
{ name: 'ManufacturerName' },
{ name: 'CustomerChargeBackEntryName' },
{ name: 'PageCount' },
{ name: 'BlackImpressions' },
{ name: 'ColorImpressions' },
{ name: 'PrinterIPAddress' },
{ name: 'Customer' },
{ name: 'AssetID' },
{ name: 'PricePlanID' },
{ name: 'CanManage' },
{ name: 'ColorCapable' },
{ name: 'PrinterMarkerSupplies' },
{ name: 'IPAddressToLong' },
{ name: 'ResponsibilityForAction' }
],
totalProperty: "TotalCount",
proxy: new Ext.ux.AspWebServiceProxy(
{
webServiceProxy: GetPrintersGrid,
webServiceProxyMethod: GetPrintersGrid.buildGrid
}),
//sortInfo: { field: 'PageCount', direction: "DESC" },
remoteSort: true,
remoteGroup: true,
//groupOnSort: false,
groupField: 'Customer',
root: 'Records'
});