I have tree panel that is also a grid. The tree panel loads fine. I have form that I use to do search. I take the results of that form and manually modify the tree grid. After a search is done, I also want to refresh/reset the grid back to normal. This cause all kinds of bugs:

  • some times I get duplicate elements
  • some times check boxes show up in from of nodes

var list = GET_TREEGRID;
var param = Ext.Object.toQueryString(values);
var searchStore = Ext.create("ITS.store.SearchManufacturers");
searchStore.getProxy().url = ITS.restURL + 'catalog/manufacturers?'+ param;
var store = list.getStore();
store.getRootNode().removeAll(true);
searchStore.load({scope:this,callback:function(){
  var nextRoot = searchStore.getRootNode();
  var rn = store.getRootNode();
  nextRoot.eachChild(function(node){
    if(node){
       node.parentId = null;
       rn.insertChild(rn.childNodes.length,node);
    }
});
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.