Replies: 1 comment
-
update: i was able to implement it in my own fork. but it evolves overriding see details here. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Assume I have
Person
s which have links to favoriteColor
s.The rows are built in such a way that each link between a person and a color gets a row. So, if a
Person
namedMike
has 3 favorite colors, I will add 3 rows to the table.The
Row
definition would be similar to:I want each person to have their own grouped row always, even if there are currently no links between the Person and a color.
examples
Example 1: Both Mike and Steve have favorite colors
In this example, Mike has three favorite colors and Steve has two favorite colors.
both Mike and Steve have dedicated grouped row that is expandable to see their favorite colors.
Example 2: Only Mike has favorite colors, Steve does not
In this example, Mike has three favorite colors and Steve does not have any explicit rows for favorite colors
and this example, Steve doesn't get it's owned row because there is no currently data associated with him.
I wish that Steve would get it's own grouped row with zero rows on the 'expanding' section of the row. because i know there is such a person and i've added an
Add
button on theAggregatedCell
, and if there is no link, so there's no grouping for Steve and theAggregatedCell
would never appears.wanted solution: another option, maybe something like
mandatoryGroupingRows
. in this examplemandatoryGroupingRows
would be equal["Steve","Mike"]
.another option would be providing a solid way to override the grouping state. then i could just provide me wanted grouped rows and the rows that associated with each group. i saw
manualGrouping
option discussion but it seems like a 'Not yet implemented' option.Beta Was this translation helpful? Give feedback.
All reactions