Hello,
I'd like to show group headers that are organized by department and person. I tried this with ResourceGroupDesction as follows:
GroupDescriptions =
new
GroupDescriptionCollection()
{
new
ResourceGroupDescription(){ ResourceType =
"Department"
},
new
ResourceGroupDescription() { ResourceType =
"Person"
},
};
However this just repeats the Person group under each department. Is there a way to have persons only show up under the department that they belong to?
This grouping isn't really resources, it was just an attempt at learning grouping methods. I can use any option available that would allow group headers organized by department / person.
Regards,