[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 Developer Plugin does not work in Chrome

2016-01-08 Thread lefevreemail
I am attempting to build the 'StockWatcher' sample found at http://www.gwtproject.org/doc/latest/tutorial/index.html No matter what I do, I keep getting the message ' Development Mode requires the GWT Developer Plugin' Its installed and enabled. Any clue as to what is up? -- You received

Re: GWT Developer Plugin does not work in Chrome

2016-01-08 Thread Frank Hossfeld
Chrome does no longer support the GWT plugin. Try Super Dev Mode Am Freitag, 8. Januar 2016 11:29:58 UTC+1 schrieb lefevr...@gmail.com: > > I am attempting to build the 'StockWatcher' sample found at > http://www.gwtproject.org/doc/latest/tutorial/index.html > > No matter what I do, I keep

Link GWT code into an iframe

2016-01-08 Thread confile
I want to link the code produced by GWT into an iframe like described here: https://perishablepress.com/embed-external-content-via-iframe-and-div/ http://www.google.com/; width="377" height="377" marginwidth="0" marginheight="0" frameborder="no" scrolling="yes" style="border-width:2px;

[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