SMART datagrid v.1 > Classes > GroupRow
When summaryMode of GridBase.rowGroup is not NONE, it will return the minimum value by calculating the sum of field values specified by parameter field among data row of belonging to this group.
$('#getMin').click(function () {
var row = grid.focusedRow();
if (row instanceof GroupRow) {
var min = row.getMin(0);
$('#min').val(min);
}
});