Hey guys,
I have this jsfiddle of a grid with grouping and an aggregate, but I would like to have the aggregates rendering per group. On my example, I am always calculating the price summation no matter the column that was grouped by.
This would allow me to make the grid definition simple enough to have the aggregation defined only on the column definition, instead of having to write it again on the group renderer.
So, to visualize what I would like to have:
group: first name
>First name: xxx
-row inside with regular cols
-row inside with regular cols
-row inside with regular cols
>aggregate bar with total on qty and price per group
>First name: yyy
-row inside with regular cols
-row inside with regular cols
-row inside with regular cols
>aggregate bar with total on qty and price per group
…
finally an aggregate bar with grand total on qty and price
Is there a way to do this ?
Thanks in advance for the help