-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
Tree Component #5964
Comments
It's already in progress, @OpsRJ. Please refer to this (as stated in the README.md): #3175. A demo for what seems to be the progress of the component till now: https://tina-material-tree.firebaseapp.com/simple-tree. |
The MD tree is an exceting component and very expect it to release, Many thanks for all of you contribution. Could you please let us know when could this feature release if possible, Even if it's a trial function. Thanks and Best regards... |
Hello, Is there any plan of launching Material Tree component soon? I need it in my project with drag and drop feature. And also I am looking for a demo of the current working tree structure. |
This component will be customizable ? I'm looking for a tree component with a filter and no checkbox. |
@stoto34 it's customizable - you provide your own template for nodes and can lay each node out however you wish |
Great, can you tell me when this component will be available ? :) |
@benb7760 Is there any update for the release date of Material tree component ? |
when it releases? |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Bug, feature request, or proposal:
I would like to request a Tree View Component.
What is the expected behavior?
The hability to select, add, remove or edit items/nodes to build a Tree structure
What is the current behavior?
It should create a Tree View component
What are the steps to reproduce?
Could be something like this:
children: [
{
children: [
{label: 'Watermelon', leaf: true, type: 'check'},
{label: 'Apricot', leaf: true, type: 'check'},
{label: 'Pineapple', leaf: true, type: 'check'},
{label: 'Kiwi', leaf: true, type: 'check'},
{label: 'Orange', leaf: true, type: 'check'},
{label: 'Pomegranate', leaf: true, type: 'check'}
],
expanded: true,
label: 'Fruits'
}
]
The text was updated successfully, but these errors were encountered: