Hello Sencha Team
In the NodeInterface.js file, the "treeStore" does not get attached to the Root Node. The root.treeStore equals undefined,due to which the treestore returns as null. I have tried this for both remote loading and data in memory.
Nightly build code:
getTreeStore: function() {
var root = this;
while (root && !root.treeStore ) {
root = root.parentNode;
}
return root && root.treeStore;
}
Ext-5.0 code:
getTreeStore: function() {
return this.store ;
},
Thanks for your time
In the NodeInterface.js file, the "treeStore" does not get attached to the Root Node. The root.treeStore equals undefined,due to which the treestore returns as null. I have tried this for both remote loading and data in memory.
Nightly build code:
getTreeStore: function() {
var root = this;
while (root && !root.treeStore ) {
root = root.parentNode;
}
return root && root.treeStore;
}
Ext-5.0 code:
getTreeStore: function() {
return this.store ;
},
Thanks for your time
NodeInterface issue in nightly build "ext-5.1.1-20150331" for treestore