-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancement Request - Tree Table #245
Comments
Hi Andrew and thanks for your request and question. |
hi @sanfordandrew While our community feature requests are lower priority than our commercial requests, we do plan to add support for unbalanced groups in the next 1-2 months. Hope this works well with your timing. Thanks for using Infinite Table! |
we just shipped the tree functionality - see https://infinite-table.com/docs/learn/tree-grid/overview for details Hope it fits your use-case well. |
I'm hoping you might consider adding tree-table like functionality to infinite table, or have a way of replicating such with the existing grouping features.
If you have a datasource like this:
[{building:'building 1', floor:'one', office:'A', numOccupants:'5'},
{building:'building 1', floor:'one', office:'B', numOccupants:'1
}, {building:'building 1', floor:'two', office:'F', numOccupants:'2'}, {building:'building 1', floor:'two', office:'G', numOccupants:'1
},{building:'building 2', floor:'one', office:'A', numOccupants:'5'},
{building:'building 2', floor:'one', office:'B', numOccupants:'1
}, {building:'building 2', floor:'two', office:'X', numOccupants:'1
},{building:'building 2', floor:'two', office:'Y', numOccupants:'3
}, {building:'building 3', floor:null, office:'M', numOccupants:'2
},{building:'building 3', floor:null, office: 'N', numOccupants:'1`}]
I have a single grouping column, and am grouping by building and floor.
Note that building 3 is a single floor building, so the floor attribute is null.
Is there a way to not render a row for the floor attribute for building 3? In other words, to make infinite-table behave more like a tree-table; if one of the grouping attributes is null, skip it?
The text was updated successfully, but these errors were encountered: