Hi Paul,
If the uploadIFrame is the only widget that you add to the uploadWin,
then the following should work:
...
} else {
// the IFrame will always be the first child of it's parent
uploadIFrame = uploadWin.getChildren()[0];
// either reset the source, or dispose the obj
I have a window.Window with an Iframe. As the user works with the
Iframe contents, several URLs can be loaded in turn. Eventually, when
the user closes the Window, I think I want to dispose of the Iframe so
that when the Window is re-opened again later, the Iframe will reload
the original URL.
M