Row Grouping ASP.NET Core MVC
Row Grouping ASP.NET Core MVC
BPiersol
Posts: 1Questions: 1Answers: 0
I am working on a project and I am using RowGrouping; for Example: State and County. But now I need to add a 3rd grouping; City. I have searching, but haven't either found a solution or a definitive answer that it can't be done.
Currently I have:
State
...County
But I need to add a City level:
State
...County
......City
So my question, it is possible to group on more than 1 column? And if so, can someone please provide and example or documentation?
This discussion has been closed.
Answers
Yep, this example here shows multi-level grouping - you just need to add the order into
rowGroup.dataSrc
,Colin