# What's new in Grid v4.2.5

## Display group summary in the group header

We recently improved the GroupSummary feature to allow rendering summaries to the group header when the group was
collapsed (the [collapseToHeader](#Grid/feature/GroupSummary#config-collapseToHeader) config). In this version we add a 
new config called [target](#Grid/feature/GroupSummary#config-target), allowing you to specify that summaries should 
always be displayed in the group headers. It accepts a string value of either `'footer'` (the default) or `'header'`. 

```javascript
const grid = new Grid({
    features : {
        groupSummary : {
            target : 'header'
        }
    }
});
```

<div class="external-example" data-file="Grid/feature/GroupSummaryTarget.js"></div>


<p class="last-modified">Last modified on 2023-10-26 8:19:11</p>