I am using the AG grid to display some data. Each data needs to have an expandable “child” row. There isn’t really a hierarchy or logical column to group the data by so I want to hide the group by column.
I have tried adding hide:true
to my defs:
autoGroupColumnDef={{
headerName: 'test',
field: 'soVRecordID',
hide: true,
cellRendererParams: {
suppressCount: true,
},
minWidth: 280,
}}
here is how my grid looks, I am trying to completely hide the “Test” column.