AI OnAI Off
right - gonna answer my own question. There are a couple of functions you can call through Javascript to do a refresh - the nodeId is a string containing the id of the node you wish to refresh from. Calling from the edit window the path is:
window.parent.EditTree.pageTreeView.RefreshChildren(nodeId) // nodeId optional
window.parent.EditTree.pageTreeView.RefreshNodeData(nodeId)
window.parent.EditTree.pageTreeView.RefreshParent(nodeId) // nodeId optional
window.parent.EditTree.pageTreeView.RefreshChildrenIfVisible(nodeId)
Hi,
After creating a page & some child pages programmatically, how do I get them to show up in the EditTree? I can't seem to get this to refresh itself, any ideas?
Cheers.