Skip to content
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

[DataGrid] Implement Tree data #210

Closed
oliviertassinari opened this issue Aug 22, 2020 · 32 comments · Fixed by #2725
Closed

[DataGrid] Implement Tree data #210

oliviertassinari opened this issue Aug 22, 2020 · 32 comments · Fixed by #2725
Assignees
Labels
feature: Tree data Related to the data grid Tree data feature linked in docs The issue is linked in the docs, so completely skew the upvotes new feature New feature or request plan: Pro Impact at least one Pro user

Comments

@oliviertassinari
Copy link
Member

oliviertassinari commented Aug 22, 2020

Benchmark

@oliviertassinari oliviertassinari added component: data grid This is the name of the generic UI component, not the React module! new feature New feature or request labels Aug 22, 2020
@oliviertassinari oliviertassinari added this to Q4 2020 Oct - Dec in MUI X public roadmap Sep 8, 2020
@oliviertassinari oliviertassinari moved this from Q4 2020 Oct - Dec to Q1 2021 Jan - Mar in MUI X public roadmap Nov 2, 2020
@oliviertassinari oliviertassinari added the linked in docs The issue is linked in the docs, so completely skew the upvotes label Nov 30, 2020
@oliviertassinari oliviertassinari moved this from Q1 2021 Jan - Mar to Q2 2021 Apr - Jun in MUI X public roadmap Jan 25, 2021
@oliviertassinari oliviertassinari moved this from Q2 2021 Apr - Jun to Q3 2021 Jul - Sep in MUI X public roadmap Apr 1, 2021
@oliviertassinari oliviertassinari moved this from Q3 2021 Jul - Sep to Future in MUI X public roadmap Apr 1, 2021
@oliviertassinari oliviertassinari moved this from Future to Q2 2021 Apr - Jun in MUI X public roadmap Apr 1, 2021
@oliviertassinari oliviertassinari moved this from Q2 2021 Apr - Jun to Q3 2021 Jul - Sep in MUI X public roadmap Apr 16, 2021
@oliviertassinari oliviertassinari changed the title [DataGrid] Implement Tree data [XGrid] Implement Tree data Jul 7, 2021
@oliviertassinari oliviertassinari added components: XGrid and removed component: data grid This is the name of the generic UI component, not the React module! labels Jul 7, 2021
@teenguyen
Copy link

Hi! Are there any updates to how this feature is going? I've noticed it's been pushed back a few times now and trying to manually implement this has been fairly difficult. Thanks!

@flaviendelangle
Copy link
Member

@teenguyen, you have the Project section on the right pannel that tells when we expect to build the feature.
It's not guaranteed of course but it can give you an idea of when we intend to do it 👍

@oliviertassinari oliviertassinari moved this from Q4 2021 Oct - Dec to Q3 2021 Jul - Sep in MUI X public roadmap Jul 22, 2021
@george-thomas-hill

This comment has been minimized.

@matandro
Copy link

The linked benchmarks focus on child rows / columns
Would this feature include a basic expendable description of the row (single div expending from row containing)?
Example https://material-table.com/#/docs/features/detail-panel

@oliviertassinari
Copy link
Member Author

@matandro Yes, this is pretty much what this feature is about.

@JonasRothmann
Copy link

JonasRothmann commented Aug 15, 2021

This is the only feature we need to move from using react-table to buying Material-UI X Pro XGrid, so hoping for it to arrive soon!

@oliviertassinari
Copy link
Member Author

@JonasRothmann It's on our roadmap for Q3 2021. Hopefully, we can start working on it next sprint, in two weeks.

@oliviertassinari oliviertassinari changed the title [XGrid] Implement Tree data [DataGridPro] Implement Tree data Aug 30, 2021
@flaviendelangle flaviendelangle self-assigned this Sep 3, 2021
@paulprinke
Copy link

Looking forward to this release! Is it still progressing for a Q3 release?

@flaviendelangle
Copy link
Member

flaviendelangle commented Sep 10, 2021

I wrote the 1st line of code this afternoon.
It will be a large feature to build so it won't come that soon, but it's now in progress and should go in Q3 / beginning of Q4 👍

@oliviertassinari oliviertassinari added this to the Sprint 22 milestone Sep 13, 2021
@m4theushw m4theushw moved this from Q3 2021 Jul - Sep to Q4 2021 Oct - Dec in MUI X public roadmap Sep 17, 2021
@flaviendelangle flaviendelangle removed this from the v5 stable version milestone Oct 1, 2021
@Seddy24
Copy link

Seddy24 commented Nov 23, 2021

@flaviendelangle

Is it possible to render the groupingColDef in a different spot than the first column?

@flaviendelangle
Copy link
Member

Not currently, what would be your usecase ?

@Seddy24
Copy link

Seddy24 commented Nov 24, 2021

@flaviendelang

Row numbers in the first column and then the grouping column.

I think I found a workaround by using the groupingColDef but setting it to hidden and then applying the same CustomGridTreeDataGroupingCell component to one of my static column definitions. Seems to work thoughts??

@flaviendelangle
Copy link
Member

I think I found a workaround by using the groupingColDef but setting it to hidden and then applying the same CustomGridTreeDataGroupingCell component to one of my static column definitions. Seems to work thoughts??

Yes, it will probably be the best workaround at first

@samborambo305
Copy link

Is there an update on this? Super excited for this feature.

@gustavozirbes
Copy link

Is there an update on this? Super excited for this feature.

I believe it will be included in the next release @flaviendelangle?

https://github.com/mui-org/material-ui-x/projects/1#card-45122802

@flaviendelangle
Copy link
Member

Yes, it should be released in the coming days 🎉

@gustavozirbes
Copy link

gustavozirbes commented Dec 8, 2021

What is the priority for the following feature?

  • New option to lazy load the childrens (probably not any time soon)

I think this is a very important feature (perhaps the most important one related to tree data).

I'm pretty sure that there was a huge effort to release this current version. But, not having a lazy load option makes it very difficult to use in real applications where we usually don't get anything except parents first and then load children on demand.

@flaviendelangle
Copy link
Member

It is a very important feature I fully agree on that.
At one point, we will have to build a data fetching layer on the grid, like AG-Grid have. But it is a long term project that we don't want to rush.

In the meatime, we could add two properties to the grid.

hasChildrenOnServer?: (row: GridRowModel) => boolean;
fetchRowChildren?: (row: GridRowModel) => Promise<GridRowModel[]>;

It will probably not be sufficient in the long run and we will probably have to break this API in v6 or v7 when addind a clean data fetching layer.
But if it unlocks users, it can make sense.

@gustavozirbes
Copy link

It would help a lot. I'm using the data grid (pro) but I had to implement the tree in a different way so I could get it working with our API. The properties you mentioned should be enough.

@flaviendelangle
Copy link
Member

I created #3377 to centralize discussions on this topic.
I'll try to see what can be done on user-land to avoid blocking users.

@flaviendelangle
Copy link
Member

https://codesandbox.io/s/datagridpro-v5-quick-start-forked-ncklk?file=/src/App.tsx

It is kind of hacky and the scroll has some issues
The main problem here is that I re-create the whole tree after updating the rows so I loose the expanded rows and have to re-set them manually.

@trivli
Copy link

trivli commented Jan 6, 2022

We've just started to use the tree data view. My biggest concern is the one you mension about forgetting the expanded rows whenever there is a change in a row's data (e.g. click the "view in map" button in the list below). Filtering and sorting does not affect the expansion, it seems.
Is there a way to work around this issue in our legacy component class? -or is there a fix to be expected in the near future?

image

@flaviendelangle
Copy link
Member

Filtering and sorting does not affect the expansion, it seems.

Not sure to understand that one.

I would have liked to merge #3277 before working on non trivial stuff on the tree structure to avoid incompatibilities.

@trivli
Copy link

trivli commented Jan 6, 2022

I meant that the expanded rows are kept during both filtering and sorting (which is good :) ).

@flaviendelangle
Copy link
Member

Basically the current workflow is

Set the rows => Generate the tree => Sort + Filter => Render

Set the rows causes a complete regeneration of the tree, even if you just change a single row, so you loose any information about the children expansion.

I have several fixes in mind.

A "simple" one would be that the tree generator take the previous tree and expand a row if the previous tree had an expanded row with the same ID.

A "complex" one would be to avoid regenerating the whole tree. It will be important at some point to handle lazy loading / partial filtering and sorting etc...
But it requires a lot more changes at will probably but in 6.0.

@oliviertassinari oliviertassinari added the feature: Tree data Related to the data grid Tree data feature label Jul 28, 2022
@Ut1998
Copy link

Ut1998 commented Mar 23, 2023

hi @cherniavskii @MBilalShafi , is it possible to achieve below use case in Tree Data Grid.

  1. Suppose we have an action button (Add) on parent level and when we click on Add, then a child row should get added.
  2. And nesting this to at least 2 levels, i.e, the child that gets added, will have a Add button, which in turn add a grand child to the child.
  3. And the expand icon should be only there if a row has child components.

@flaviendelangle
Copy link
Member

Hi,

I'm not working on the data grid anymore, maybe @cherniavskii or @MBilalShafi can help you

@Ut1998
Copy link

Ut1998 commented Mar 23, 2023

Sure, thanks

@MBilalShafi
Copy link
Member

MBilalShafi commented Apr 9, 2023

Hello @Ut1998, you can achieve such a thing using updateRows API method. I've tried to do that in this codesandbox example: https://codesandbox.io/s/bold-spence-hugcdp?file=/demo.tsx

Is this what you are trying to do?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature: Tree data Related to the data grid Tree data feature linked in docs The issue is linked in the docs, so completely skew the upvotes new feature New feature or request plan: Pro Impact at least one Pro user
Projects
None yet
Development

Successfully merging a pull request may close this issue.