I am doing something like below
const expandRow = { renderer: row => ( <div> <p>{ This Expand row is belong to rowKey ${row.id} }</p> <p>You can render anything here, also you can add additional data on every row object</p> <p>expandRow.renderer callback will pass the origin row object to you</p> </div> ), showExpandColumn: true, expandByColumnOnly: true, onlyOneExpanding: true, };
Now my concern is how to remove the expand all functionality in header
Screenshot ->
