WeWeb’s native datagrid does not support true “expandable / collapsible” detail rows out of the box.
However, you can approximate this behaviour by combining a custom column with another component (like a dropdown or conditional container) that reveals the related note lines.
Thanks for the response. I have since realised that what I want to do wouldn’t work as the data for the rolled-up rows will be coming from another collection. Believe that I will have to use a modal instead.
You could also fake it, aka have the data present, but only show it once the user clicks on this row and sets a variable… this should work in principle.
Instead of using the datagrid use the table component. Within the collection list on the table you bind your data which should be grouped. You would add another container within the rows and another list within the container that is binded to a variable that on click would show the data. Pretty simple if your data is all grouped correctly.
If you wanted to use the datagrid maybe on click you could have a popup that would show further details, that would be the easiest setup.