[DataTable] RowGroupHeader show same columns as the rows that are being grouped (i.e. do what the footer is doing) #791
-
I have a DataTable that groups rows based on the value of a field (e.g. 'project.name'). I can collapse/expand the group and have been able to add a Maybe there are better ways to do what I am trying to do, or a way that I have not been able to find in all of my google searches. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
If you create a StackBlitz reproducer showing what you are trying to do someone here may be able to help. Start with this one: https://stackblitz.com/edit/react-4bmrwf?file=src%2FApp.js |
Beta Was this translation helpful? Give feedback.
OK I made it better there is a setting
options.customerRendering = true
https://stackblitz.com/edit/react-4bmrwf-fwgj8o?file=src%2FApp.js
That puts the rendering of the Column Header fully under your control and the
<td>
line up. However there is still the issue of the missing RowToggler now.