File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 353
353
* @description shows counts on the groupHeader rows. Not that if you are using a cellFilter or a
354
354
* sortingAlgorithm which relies on a specific format or data type, showing counts may cause that
355
355
* to break, since the group header rows will always be a string with groupingShowCounts enabled.
356
- * <br/>Defaults to true except on columns of type 'date'
356
+ * <br/>Defaults to true except on columns of types 'date' and 'object '
357
357
*/
358
358
gridOptions . groupingShowCounts = gridOptions . groupingShowCounts !== false ;
359
359
582
582
583
583
if ( typeof ( aggregation . groupVal ) !== 'undefined' ) {
584
584
aggregation . rendered = aggregation . groupVal ;
585
- if ( col . grid . options . groupingShowCounts && col . colDef . type !== 'date' ) {
585
+ if ( col . grid . options . groupingShowCounts && col . colDef . type !== 'date' && col . colDef . type !== 'object' ) {
586
586
aggregation . rendered += ( ' (' + aggregation . value + ')' ) ;
587
587
}
588
588
} else {
You can’t perform that action at this time.
0 commit comments