I have an angular application that I am adding an agGrid table to. I configured the table to allow grouping rows as follows:
<ag-grid-angular
[columnDefs]="columnDefs"
[rowData]="activeMethods"
[groupDefaultExpanded]="-1"
[rowGroupPanelShow]="'always'"
>
</ag-grid-angular>
And I set some of the columns to be groupable as follows:
enableRowGroup: true,
enablePivot: true,
This shows the row group panel and allows grouping of the columns I drag into it, but the issue is that "non-groupable" columns that I drag into the panel are hidden. I need those columns not to be hidden when dragged there. I know that the suppressDragLeaveHidesColumns parameter disables hiding any column when it's dragged away from the table, but I would want the "groupable" columns to still be hidden when dragged to the group panel. Is what I want to achieve easily doable?