-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 and TreeTable: Scroll performance (big amount data) (virtual scrolling) #1888
Comments
+1 |
2 similar comments
+1 |
+1 |
+1. Any update on if this will be implemented? |
I don't think it's that easy to do because of recursion |
I am also looking for this functionality. |
Thanks a lot for this issue! PrimeTek's own vision for PrimeVue is demanding, but community feedback is crucial in prioritization. The more upvotes help ensure this fix can be addressed quickly or the related PR can be merged soon. |
Due to PrimeTek's demanding roadmap for PrimeVue and the limited bandwidth of the core team, this issue is available for anyone to work on. Make sure to reference this issue in your pull request. ✨ Thank you for your contribution! ✨ |
This is true for all components that are currently in place.
Especially for Tree
Add virtual scrolling for Tree
The problem is that there are a lot of objects in my tree. There are a lot of objects in the DOM when nodes are open. Because of this, the entire UI starts to slow down terribly.
It is necessary to make scrolling virtualization for all components that have scrolling and display data
i.e. do something like this: https://vuejsexamples.com/a-vue-component-support-big-amount-data-list-with-high-scroll-performance/
This is very critical for me.
Please do something as quickly as possible.
Paginator is not always available for specific tasks
You can take another component for virtualization and apply it to your components
(https://www.vuescript.com/best-virtual-scrolling/)
EDIT:
https://primefaces.org/primevue/showcase/#/virtualscroller
As I understand it, you already have a virtual scroll.
Use it in the component Tree and TreeTable please.
This is a very high priority.
Ideally, wherever there are lists and scroll to use it
The text was updated successfully, but these errors were encountered: