[gwt-contrib] Re: CSS Resources are not set in Panels in an iframe

2016-01-08 Thread confile
I could extend the CrossSiteIframeLinker and change: L413: out.print("var $wnd = $wnd || window.parent;"); to out.print("var $wnd = $wnd || document.getElementById("myiframe");"); But what do you mean by "an iframe created during "bootstrap"? Where do I create the iframe? Am

Re: [gwt-contrib] Re: CSS Resources are not set in Panels in an iframe

2016-01-08 Thread Colin Alworth
As long as both $wnd and $doc exist in the frame where you plan on creating/rendering widgets, it shouldn't matter how you create or find the iframe. This should only mean that your frame must be created when that line of bootstrap code executes, either because you created it there, or because you

Re: [gwt-contrib] Re: CSS Resources are not set in Panels in an iframe

2016-01-08 Thread confile
@Colin, I did not get your point how would you generate a GWT app inside: // GWT app Am Freitag, 8. Januar 2016 20:28:50 UTC+1 schrieb Colin Alworth: > > As long as both $wnd and $doc exist in the frame where you plan on > creating/rendering widgets, it shouldn't matter how you

[gwt-contrib] Re: CSS Resources are not set in Panels in an iframe

2016-01-08 Thread confile
Here is what I want to do with GWT. https://perishablepress.com/embed-external-content-via-iframe-and-div/ Any idea how to do that? Am Dienstag, 5. Januar 2016 18:40:28 UTC+1 schrieb Thomas Broyer: > > Ideally, probably use a custom linker that makes it so that $wnd and $doc > point to an