In my application, I am using Node.js as a backend and Extjs as a Frontend.
I need to construct tree in Extjs using Database values which are get from Node.js.
I am able construct the Tree very well.
But there is a problem when the database has more record. In my application have more than '100000' record. So the process of tree construction is Getting long time.
Is there any way to implement Lazy load in Extjs Tree using database ajax call on each node?
Thanks in advance.
I think that the best aproach is load only parents node, then capture event click in a parent node to make Ajax call and get child nodes.
I found that : Click event on tree's children/node
Use listeners to make Ajax call when item is clicked.
Renderize over 100000 records always take long time, but using listeners in parents nodes you can reduce the records.
I hope this helps !