Hi,
I've tried to migrate project from jsTree 1.0-rc1 to jsTree 3 because of long time of opening all nodes by jsTree 1.0-rc1. On tree with 30K nodes and 15 max level of nesting old jsTree need 250sec to open all nodes. However using jsTree v3 it takes even more - 950sec.
For jsTree 1 i use progressive_render: true.
For jsTree3 I use basic configuration with animation turned off. JSON has structure as below:
{
"id" : "id1",
"text" : "text of node1",
"state" :
{
"opened" : 0
} ,
"icon" : "icon1",
"a_attr" :
{
"class" : "jstree-low"
} ,
"children" :
[
{
"id" : "id2",
"text" : "text of node 2",
"state" :
{
"opened" : 0
} ,
"icon" : "icon1",
"a_attr" :
{
"class" : "jstree-low"
} ,
"children" :
[ ...
Do you know way to speed up opening all nodes using jsTree?