Affichage des articles dont le libellé est NodeInterface issue in nightly build "ext-5.1.1-20150331" for treestore. Afficher tous les articles
Affichage des articles dont le libellé est NodeInterface issue in nightly build "ext-5.1.1-20150331" for treestore. Afficher tous les articles

jeudi 9 avril 2015

NodeInterface issue in nightly build "ext-5.1.1-20150331" for treestore

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





NodeInterface issue in nightly build "ext-5.1.1-20150331" for treestore