When using batch editing, the aggregate values will be refreshed on every cell save. The footer, group footer, and group caption aggregate values will be refreshed.
Adding a new record to the grouped grid will not refresh the aggregate values.
var customAggregateFn = function(data){
return ('result' in data ? ( 'records' in data.result ?
return data.result.records.filter((item: Object) =>
item['CustomerID'] === 'HANAR'
).length :
return data.result.filter(function(item){
item['CustomerID'] === 'HANAR'
}).length)
:
( 'items' in data ?
return data.items.filter(function(item){
item['CustomerID'] === 'HANAR'
}).length :
return data.filter(function(item){
item['CustomerID'] === 'HANAR'
}).length)
)
};
ej.grids.Grid.Inject(ej.grids.Page, ej.grids.Toolbar, ej.grids.Edit, ej.grids.Group, ej.grids.Aggregate);
var grid = new Grid({
dataSource: data,
allowPaging:true,
pageSettings:{pageSize:6},
toolbar: ['Delete', 'Update', 'Cancel'],
editSettings: { allowEditing: true, allowDeleting: true, mode: 'Batch' },
allowGrouping: true,
groupSettings: { showDropArea: false, columns: ['ShipCountry'] },
columns: [
{ field: 'OrderID', headerText: 'Order ID', isPrimaryKey:true, textAlign: 'Right', width: 120 },
{ field: 'CustomerID', headerText: 'Customer ID', width: 150 },
{ field: 'Freight', headerText: 'Freight', width: 150, format: 'C2' },
{ field: 'ShipCountry', headerText: 'Ship Name', width: 150 }
],
height: 268,
aggregates: [{
columns: [{
type: 'Custom',
customAggregate: customAggregateFn,
columnName: 'CustomerID',
footerTemplate: 'HANAR Count: ${Custom}'
},
{
type:'Sum',
field:'Freight',
format:'C2',
footerTemplate:'Sum : ${Sum}'
}]
},
{
columns:[{
type:'Sum',
field:'Freight',
format:'C2',
groupCaptionTemplate:'Sum : ${Sum}'
}]
},
{
columns:[{
type:'Sum',
field:'Freight',
format:'C2',
groupFooterTemplate:'Sum : ${Sum}'
}]
}
]
});
grid.appendTo('#Grid');
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Grid</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Grid Control">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-base/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-grids/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-buttons/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-popups/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-navigations/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-dropdowns/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-lists/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-inputs/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-calendars/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-splitbuttons/styles/material.css" rel="stylesheet">
<script src="https://cdn.syncfusion.com/ej2/21.2.3/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="Grid"></div>
<div id="toolbar-template">
<div id="refresh" title="Refresh">
<button class="e-btn e-flat">
<span class="e-btn-icon e-icons e-refresh"></span>
</button>
</div>
</div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
By default, reactive aggregate update is not supported by inline and dialog edit modes as it is not feasible to anticipate the value change event for every editor. But, you can refresh the aggregates manually in the inline edit mode using the refresh method of aggregate module.
In the following code, the input event for the Freight column editor has been registered and the aggregate value has been refreshed manually.
ej.grids.Grid.Inject(ej.grids.Page, ej.grids.Toolbar, ej.grids.Edit, ej.grids.Aggregate);
var customAggregateFn = function(data){
return ('result' in data ?
return data.result.filter(function(item){
item['CustomerID'] === 'HANAR'
}).length:
return data.filter(function(item){
item['CustomerID'] === 'HANAR'
}).length)
}
var window['selectedRecord']={};
var grid = new Grid({
dataSource: data,
allowPaging:true,
pageSettings:{pageSize:7},
toolbar: ['Edit', 'Delete', 'Update', 'Cancel'],
editSettings: { allowEditing: true, allowDeleting: true, mode: 'Normal' },
actionBegin: function(args){
if(args.requestType === 'beginEdit'){
selectedRecord = {};
selectedRecord = args.rowData;
};
},
columns: [
{ field: 'OrderID', headerText: 'Order ID', isPrimaryKey:true, textAlign: 'Right', width: 120 },
{ field: 'CustomerID', headerText: 'Customer ID', width: 150 },
{ field: 'Freight', headerText: 'Freight', editType: 'numericedit', format: 'C2', edit: { params: { change: funChange } },
width: 150},
{ field: 'ShipCountry', headerText: 'Ship Name', width: 150 }
],
height: 268,
aggregates: [{
columns:[{
type:'Sum',
field:'Freight',
format:'C2',
footerTemplate:'Sum : ${Sum}'
}]
}]
});
grid.appendTo('#Grid');
function funChange(args:any):void{
let gridObj = document.getElementById('Grid')['ej2_instances'][0];
selectedRecords['Freight'] = args.value; // Set the edited value to aggregate column
gridObj.aggregateModule.refresh(selectedRecords) // Refresh aggregates using edited data
}
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Grid</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Grid Control">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-base/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-grids/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-buttons/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-popups/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-navigations/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-dropdowns/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-lists/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-inputs/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-calendars/styles/material.css" rel="stylesheet">
<link href="//cdn.syncfusion.com/ej2/21.2.3/ej2-splitbuttons/styles/material.css" rel="stylesheet">
<script src="https://cdn.syncfusion.com/ej2/21.2.3/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="Grid"></div>
<div id="toolbar-template">
<div id="refresh" title="Refresh">
<button class="e-btn e-flat">
<span class="e-btn-icon e-icons e-refresh"></span>
</button>
</div>
</div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>