Extending dijit.Tree with refresh method
Frank van der Linden
14 January 2010 18:57:44
Today I was using the dijit.Tree to generate a Tree of a Notesview. After posting a document I wanted to refresh the tree.
After some searching on the internet I discovered dijit.Tree has no such method.
But I also found some code to extend the dijit.Tree with a refresh method.
Add this code to your page
And you are able to call the refresh method, like
dijit.byId('mytree').refresh()
- Comments [0]