I would like to refresh a node of a tree.
I try something like that to refresh the root and it worked:
this.getStore('MyTreeStore').load({ params: { id: this.getId().getValue()} });
But now I would like to refresh only one Node and not the whole tree.
The best response I found is:
this.getStore('MyTreeStore').load({ node: someNode});