Hmm, well it may not like that you're not using a ViewPort. Other
than that, you could try using a regular GWT widget instead (you don't
need to use ContentPanels unless layout is an issue for it or it's
child widgets, which probably is not for this Frame). That failing,
use Firefox or a debugging toolkit to inspect the DOM to find exactly
where this frame ends up. Maybe it's not getting added properly, or
maybe it's buried a level above or below where you're calling it
from. Once you can see the DOM, you can easily point your call in the
right direction.
Otherwise, if you have access to the source, I would add a line like
so to the page in the frame:
window.[parent/top/yourchoice].thefunction = functionyourecalling;
(parent probably works best but top could work too)
So that you can just say $wnd.thefunction (via JSNI) to call that
function from anywhere, without having to know anything about the DOM
layout.
Good luck!
--
Carl Scott
Software Developer, Solertium Corporation
> > - Show quoted text -- Hide quoted text -