SMART datagrid v.1 > Classes > GridView
It will be fired after committing row grouping.
Before starting grouping, onGrouping event will be fired. You can check the list of field which has involved in row grouping through rowGroupFields property.
grid.onGrouped = function (grid) {
var fields = grid.rowGroupFields();
console.log(fields);
};