-
22 Nov 2012 11:43 PM #1
Unanswered: Reload a node in a dynamic treestore/treepanel
Unanswered: Reload a node in a dynamic treestore/treepanel
How can i reload a node within a treestore ?
I use this.getStore().getNodeById(id) to retrieve the node but i didn't find function to reload this node
-
23 Nov 2012 2:17 AM #2
Try this:
Code:var node = this.getStore().getNodeById(id); node.collapse(); node.set('loaded', false); node.expand();


Reply With Quote