Threaded View
-
19 May 2012 12:47 AM #1
Answered: extjs 4.1 tree refresh a specific node
Answered: extjs 4.1 tree refresh a specific node
I would like to refresh a node of a tree.I try something like that to refresh the root and it worked:
But now I would like to refresh only one Node and not the whole tree.Code:this.getStore('MyTreeStore').load({ params: { id: this.getId().getValue()} });
-
Best Answer Posted by Ujjwal Reddy
If you want to load a particular node, then pass a node/record object in the store's load() call. This will load the data of that node (similar to an expand request of the node).
Code:this.getStore('MyTreeStore').load({ node: someNode});


Reply With Quote