|
I am using JSTree in my application. I have very huge data to be displayed in JSTree. I have around 200 000 nodes to be displayed. I provided search functionality to user. Upon search I am clearing previous instance of jstree and creating new instance with required data. On Loaded event which is fired when "Root" node is loaded I am calling open_all() method to open all nodes, I have huge data and I am using lazy loading. So for example in one case I have 20K nodes inside one node. So it makes 20K ajax request which ultimately leads to "ERR_INSUFFICIENT_RESOURCES". How can I integrate massload functionality over here with open_all()? |