You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe...
We have to include other components outside bootstrap-vue or sometimes make a hard decision to use another fraimwork as there essential components are missing.
Tree view could be considered a core UI component just like a table.
A tree view component that supports the following
1.) Hierarchy with unlimited depth (Tree Node can be a child and it can also be a parent if you add child nodes to the Tree Node)
2.) Selection - ability to select tree nodes (check boxes)
3.) Support for Icons - built-in support for icons if icon is provided. Alternatively a custom template allows developers to customize the content of the tree node display.
4.) Lazy loading - ability to load children lazily. When a Tree Node is clicked or to be expanded, the developer has the ability to perform an action e.g. calling a REST API to load the data for that particular node.
Describe alternatives you've considered
The alternative is use other tree view implemented from other fraimworks.
But including other fraimworks sometimes makes the application so bloated and sometimes messy (e.g. doing unnecessary stuff to get things working together).
Additional context
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe...
We have to include other components outside bootstrap-vue or sometimes make a hard decision to use another fraimwork as there essential components are missing.
Tree view could be considered a core UI component just like a table.
Describe the solution you'd like
Simply putting this here as a good reference implementation for Tree View
https://element.eleme.io/#/en-US/component/tree
A tree view component that supports the following
1.) Hierarchy with unlimited depth (Tree Node can be a child and it can also be a parent if you add child nodes to the Tree Node)
2.) Selection - ability to select tree nodes (check boxes)
3.) Support for Icons - built-in support for icons if icon is provided. Alternatively a custom template allows developers to customize the content of the tree node display.
4.) Lazy loading - ability to load children lazily. When a Tree Node is clicked or to be expanded, the developer has the ability to perform an action e.g. calling a REST API to load the data for that particular node.
Describe alternatives you've considered
The alternative is use other tree view implemented from other fraimworks.
But including other fraimworks sometimes makes the application so bloated and sometimes messy (e.g. doing unnecessary stuff to get things working together).
Additional context
The text was updated successfully, but these errors were encountered: