Re: Iframe = multithreading ???

2017-09-14 Thread Paul Porombka
eduled and "lighter", so works much > better than forcing multithreading with IFrames :-) > But the concept is pretty nice, don't you think :-) > > And to clarify. I was rather also considering a situation where I have a > blank page in IFrame, without any UI elements

Re: Iframe = multithreading ???

2017-09-14 Thread Paul Porombka
ather also considering a situation where I have a blank page in IFrame, without any UI elements, probably hidden frame, that will handle heavy operations, sent there from parent using postMessage. Because user interactions on UI can cause the behavior you observed. Then I would be closer to W

Re: Iframe = multithreading ???

2017-09-14 Thread Thomas Broyer
On Thursday, September 14, 2017 at 12:09:37 PM UTC+2, Paul Porombka wrote: > > Hi Ben, > > I see the time when you've posted the message and see the answers here, so > I codn;t stop to write something here. > I will answer YES to your question, but it depends. > >

Re: Iframe = multithreading ???

2017-09-14 Thread Paul Porombka
Hi Ben, I see the time when you've posted the message and see the answers here, so I codn;t stop to write something here. I will answer YES to your question, but it depends. Generally, IFrame under the same domain is using the same thread. I don't know how it was at the time You've been asking

How to add a GWT module to a dynamically created Iframe

2017-05-31 Thread Gourav Dhelaria
odules in a dynamically created iframe. Detailed description: I have a GWT module called 'embed' which generates embed.nocache.js file. I have another GWT module called 'widget' which generates widget.nocache.js file. I add embed.nocache.js to my HTML page. This adds a link called '

Re: How to Load html files through iframe

2016-01-11 Thread N Troncoso
Frame iframe = new Frame(); iframe.setUrl("path/to/file"); On Monday, December 28, 2015 at 10:23:01 AM UTC-5, Chandan Kumar Rout wrote: > > Hi all. > I want to load a html file which is in location file:///C:/test.html. > How i can load it in my GWT appli

[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

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
r 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 found it. > > On Fri, Jan 8, 2016 at 11:44 AM confile <michael@googlemail.com >

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=&quo

[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 &

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

2016-01-05 Thread Thomas Broyer
On Monday, January 4, 2016 at 8:31:56 PM UTC+1, confile wrote: > > I want to insert GWT Widgets like FlowPanel, HTMLPanel inside and iframe > using GWT. > TL;DR: you can't. > I find out how to insert GWT Widgets and Panels programmatically into GWT. > Here is how I do

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

2016-01-05 Thread Grzegorz Nowak
jector. After successful injection you can assign styles to elements from Css/Gss resources. On Monday, January 4, 2016 at 8:31:56 PM UTC+1, confile wrote: > > I want to insert GWT Widgets like FlowPanel, HTMLPanel inside and iframe > using GWT. I find out how to insert GWT Wid

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

2016-01-05 Thread confile
Do you have an example for a custom linker? 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 iframe created during "bootstrap" of the app. > Or as I said bef

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

2016-01-05 Thread Thomas Broyer
Ideally, probably use a custom linker that makes it so that $wnd and $doc point to an iframe created during "bootstrap" of the app. Or as I said before, don't use widgets. -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group.

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

2016-01-05 Thread confile
Hi Thomas, the reason why I want to use an iframe is the following. I want to create a JavaScript widget which is integrated into another third party page. Have a look at this: https://www.livechatinc.com/ They have a chat widget which has the following structure: // widget content

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

2016-01-04 Thread confile
I want to insert GWT Widgets like FlowPanel, HTMLPanel inside and iframe using GWT. I find out how to insert GWT Widgets and Panels programmatically into GWT. Here is how I do it: public interface Resources extends ClientBundle { @Source({Css.DEFAULT_CSS}) Css css(); } public

How to Load html files through iframe

2015-12-28 Thread Chandan Kumar Rout
Hi all. I want to load a html file which is in location file:///C:/test.html. How i can load it in my GWT application. Is it possible or not. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving

Re: GWT Cross Site Iframe Linker and Script Tags

2015-09-24 Thread Greg
Hi I know it's an old thread but I used few hours to quickly implement a linker and special entry point class that uses script tags from gwt.xml files and injects them automatically using ScriptInjector. There are few changes required in EntryPoint classes but they are not that intrusive.

What happens if compiled script (iframe content) is loaded after outer page is parsed

2014-12-28 Thread Jose María Zaragoza
Hello: Reading the GWT Bootstrap on Googles page http://www.gwtproject.org/doc/latest/DevGuideOrganizingProjects.html#DevGuideBootstrap I wonder what happens if host page is parsed before iframe's contents are loaded. Does it wait for it ? Does it do anything ? I know onInjectionDone()

iFrame usage any shortcomings that we should we aware of ?

2014-12-03 Thread sch
Hi! We are using iframe to render document content fetched from the server. The document on the server could have been created using Word as authoring tool / created via an HTML editor on the client itself. The content on the server is stored in individual items on the server. We need to fetch

Re: GWT Cross Site Iframe Linker and Script Tags

2014-11-06 Thread Etienne Lacazedieu
Well, it was a Code Splitting problem. Both SuperDevMode and DevMode works fine with the new linker. Le mercredi 5 novembre 2014 23:21:22 UTC+1, Etienne Lacazedieu a écrit : Hi, I'm preparing a big switch (GWT2.3 to 2.6.1, which may change to 2.7.0 depening on the final release date),

Re: GWT Cross Site Iframe Linker and Script Tags

2014-11-05 Thread Etienne Lacazedieu
Hi, I'm preparing a big switch (GWT2.3 to 2.6.1, which may change to 2.7.0 depening on the final release date), and I'm having trouble with the xsiframe linker.. I have no problems with adding script tags in the HTML file. Actually, I wrote a linker (a subclass of CrossSiteIframeLinker),

Re: GWT Cross Site Iframe Linker and Script Tags

2014-07-16 Thread gabriele.prandini
This problem is blocking me from use superdevmode i have many 3th library, also gwt-ext... and gwt-ext have some script tag on his gwt.xml so sad :-( Il giorno lunedì 12 novembre 2012 17:54:58 UTC+1, Thomas Broyer ha scritto: On Monday, November 12, 2012 4:55:58 PM UTC+1, googelybear wrote:

Re: GWT Cross Site Iframe Linker and Script Tags

2014-07-16 Thread Thomas Broyer
On Wednesday, July 16, 2014 11:06:43 AM UTC+2, gabriele.prandini wrote: This problem is blocking me from use superdevmode i have many 3th library, also gwt-ext... and gwt-ext have some script tag on his gwt.xml so sad :-( As the error message says: add set-configuration-property

App in iframe does top navigation

2014-07-08 Thread Harry Keller
Is there a way to avoid top navigation for a GWT app in an iframe? I am putting my app into someone else's page, and they are putting it in an iframe. The app takes over the entire window instead of limiting itself to the iframe. If I turn off ALLOW_TOP_NAVIGATION, the app will not run

get scroll event from iframe

2013-08-22 Thread bhomass
there seems to be no way in GWT to get the iframe scrollEvent. I tried (com.google.gwt.dom.client.IFrameElement)frame.addDomHandler(newScrollHandler() { @Override public void onScroll(ScrollEvent event) { // do something } }, ScrollEvent.getType()); but the event does not fire

Re: gwt navigation with 3rd party app in iframe

2013-08-12 Thread Lance Frohman
I got the pages to not blink, but the back button does not work correctly, you need to click it three times to get to the page it should go to. It was doing this before I made your fix. thanks On Fri, Aug 9, 2013 at 9:16 AM, Lance Frohman lfroh...@gmail.com wrote: Thank you. On Thursday,

Re: gwt navigation with 3rd party app in iframe

2013-08-12 Thread Jens
I got the pages to not blink, but the back button does not work correctly, you need to click it three times to get to the page it should go to. It was doing this before I made your fix. Well thats expected as you update the URL whenever a navigation inside the 3rd party app occurs. I

Re: gwt navigation with 3rd party app in iframe

2013-08-09 Thread Lance Frohman
Thank you. On Thursday, August 8, 2013 1:05:12 PM UTC-7, Jens wrote: You need to cache the activity that displays the 3rd party app so it does not get recreated in your ActivityMapper each time you navigate inside the 3rd party app. So your URLs should look like

gwt navigation with 3rd party app in iframe

2013-08-08 Thread Lance Frohman
I have a GWT application with navigation designed using the samples (Place,Activity,EventBus ...) There is a navigation bar, and a Panel where the actual navigation takes place. In some cases, the panel is filled with a third party app using a com.google.gwt.user.client.ui.Frame iframe

Re: gwt navigation with 3rd party app in iframe

2013-08-08 Thread Jens
You need to cache the activity that displays the 3rd party app so it does not get recreated in your ActivityMapper each time you navigate inside the 3rd party app. So your URLs should look like /#ThirdPartyAppPlace:app=page1 /#ThirdPartyAppPlace:app=page2param=x /#ThirdPartyAppPlace:app=page3

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-15 Thread Manuel Carrasco Moñino
Manuel Carrasco Moñino has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframe .. Patch Set 5: (1 comment) File user

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-15 Thread Manuel Carrasco Moñino
Manuel Carrasco Moñino has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframe .. Patch Set 5: (1 comment) File user

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Daniel Kurka
Hello Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3430 to look at the new patch set (#3). Change subject: making RootPanel.clear(true) respects GWT loader iframe

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframe .. Patch Set 1: (1 comment) File user/src/com

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Daniel Kurka
Hello Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3430 to look at the new patch set (#4). Change subject: making RootPanel.clear(true) respects GWT loader iframe

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframe .. Patch Set 4: Code-Review+1 (1 comment) File

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Daniel Kurka
Hello Thomas Broyer, Leeroy Jenkins, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/3430 to look at the new patch set (#5). Change subject: making RootPanel.clear(true) respects GWT loader iframe

[gwt-contrib] Change in gwt[master]: making RootPanel.clear(true) respects GWT loader iframe

2013-06-14 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: making RootPanel.clear(true) respects GWT loader iframe .. Patch Set 4: (1 comment) File user/src/com

Re: Drag and Drop to a RichTextArea / IFrame?

2013-06-04 Thread Dave
paranoiabla@... paranoiabla@... writes: I have the same problem. I can't drop into an iframe :( On Monday, August 6, 2012 10:36:58 PM UTC+3, GWT Kid wrote: is there a solution for this ? How do we do drag and drop in richTextAreaOn Wed, Oct 26, 2011 at 9:55 AM, Derek derek

Re: AdSense without iframe

2013-06-02 Thread kels124
; google_ad_width = 336; google_ad_height = 280; //-- /script script type=text/javascript src=http://pagead2.googlesyndication.com/pagead/show_ads.js; /script /span I will like to know if I had done a good job or not...my intention is to ensure that I don't have an iframe within the ads region also. Also

How to set title of an iframe generated by GWT

2013-05-30 Thread Arindam Das
Hi GWT compiles and put things inside an iframe. But if I want to set title of that iframe how to do that? The reason behind this is accessibility standard which demands a meaning title of an iframe. Thanks in advance. -- You received this message because you are subscribed to the Google

Re: How to set title of an iframe generated by GWT

2013-05-30 Thread Thomas Broyer
On Thursday, May 30, 2013 1:08:09 PM UTC+2, Arindam Das wrote: Hi GWT compiles and put things inside an iframe. But if I want to set title of that iframe how to do that? The reason behind this is accessibility standard which demands a meaning title of an iframe. I must say I don't

Re: How to set title of an iframe generated by GWT

2013-05-30 Thread David
Maybe he is not aware, that the IFrame he mentioned does not display any GUI, it just contains the javascript sources. The UI is not rendered in that IFrame but in the main window instead. David On Thu, May 30, 2013 at 1:37 PM, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, May 30

GWT application in iFrame

2013-04-24 Thread Imy
Hi, I have a web app and it is called in an iFrame. This contains 2 slider elements and an output element. When the sliders are moved a calculation is fired and displayed in the output element. However, this works fine with all browsers except Chrome. When I move the sliders, the output

Re: Drag and Drop to a RichTextArea / IFrame?

2013-03-10 Thread paranoia...@gmail.com
I have the same problem. I can't drop into an iframe :( On Monday, August 6, 2012 10:36:58 PM UTC+3, GWT Kid wrote: is there a solution for this ? How do we do drag and drop in richTextArea On Wed, Oct 26, 2011 at 9:55 AM, Derek derek...@gmail.com javascript:wrote: I'm trying out some

IFrame BlurHandler event target

2013-01-22 Thread kjordan
Is there any way through GWT to get the target of a BlurHandler placed on an IFrame (specifically the one used in the HtmlEditor)? I get the BlurEvent just fine, but getting what it blurred to seems problematic. The getEventTarget() seems to return an EventTarget that is neither a Node nor

iframe + radio button + flash

2012-12-05 Thread Jose María Zaragoza
), but this bug affects in a serious way to all GWT applications running in hosted pages with flash elements. I don't know why , but it looks like radio buttons are renderized inside iframe element and write them out of it. am I wrong ? So, it's a problem : all radio are painted with a ugly

Re: GWT Cross Site Iframe Linker and Script Tags

2012-11-16 Thread googelybear
Thanks for the pointer to the ScriptInjector, didn't know that before. It's not that I don't want to update my libraries, but in my case the 3rd party library I am using to include flash content (gwt2swf) seems to be no longer maintained. So I guess I *have* to do it by myself using the

Re: GWT Cross Site Iframe Linker and Script Tags

2012-11-12 Thread googelybear
in their .gwt.xml module? It gives the following error: [ERROR] The Cross-Site-Iframe linker does not support script tags in the gwt.xml files, but the gwt.xml file (or the gwt.xml files which it includes) contains the following script tags: . In order for your application to run correctly, you

Re: GWT Cross Site Iframe Linker and Script Tags

2012-11-12 Thread Thomas Broyer
On Monday, November 12, 2012 4:55:58 PM UTC+1, googelybear wrote: I have the same error when running the code server and this limitation effectively prevents me from using superdevmode, as in my case the problem is with an external library that I include which then uses the script tag in

iframe event / gwt 2.5

2012-10-27 Thread Hugues Lara
Hi, I want to fire a popup when i click in an iFrame and get the target element in order to recover his id. Why the ONCLICK event don't work ? The ONLOAD work perfectly. Thanks Code Sample : package com.exp.client; import com.google.gwt.user.client.DOM; import

Re: GWT Cross Site Iframe Linker and Script Tags

2012-09-28 Thread skrat
This sucks great time, now that devmode plugins have been abandoned (surprise!), and Super Dev Mode was forced onto us, xsiframe became a must, and all the GWT libraries and apps that use script tags are not working anymore. What's wrong with document.write anyway? I'm really angry now with

Re: GWT Cross Site Iframe Linker and Script Tags

2012-09-28 Thread Thomas Broyer
On Friday, September 28, 2012 4:36:41 PM UTC+2, skrat wrote: This sucks great time, now that devmode plugins have been abandoned (surprise!), Are you kidding?! Brian spent days (weeks?) releasing the plugin for Firefox 15 (there was more changes from Mozilla's side than for previous

How get iFrame contents with different domains ?

2012-09-25 Thread Nabil
Hi, i have created an iFrame in my project that calls an external service (for example whatismyip.com) that returns my public IP. the problem is i cant get iFrame content, because there is a completly different domains. the question is how can i get this iFrame contents ? its very urgent please

Re: How get iFrame contents with different domains ?

2012-09-25 Thread gpike
Hi, You can't directly in GWT it honors cross site scripting you can however drop down to Javascript. Write a JSNI method that accesses the containing docs parent (your app) by accessing top, then in your code you can access the iFrame and then it's document. Something like this: public

Re: How get iFrame contents with different domains ?

2012-09-25 Thread gpike
On Friday, September 21, 2012 2:28:25 AM UTC-6, Coco Gwt wrote: Hi, i have created an iFrame in my project that calls an external service (for example whatismyip.com) that returns my public IP. the problem is i cant get iFrame content, because there is a completly different domains

Re: How get iFrame contents with different domains ?

2012-09-25 Thread gpike
) by accessing top, then in your code you can access the iFrame and then it's document. Something like this: public static DocumentElement getFrameDocumtent() { FrameElement top = getTopDocument().getElementById(MyiFrame); return top.getContentDocument(); } public static native Document

Re: How get iFrame contents with different domains ?

2012-09-25 Thread Кирилл Карпенко
...@gmail.com написал: Hi, i have created an iFrame in my project that calls an external service (for example whatismyip.com) that returns my public IP. the problem is i cant get iFrame content, because there is a completly different domains. the question is how can i get this iFrame contents ? its very

Re: printing problem: when I print content of my iframe (I use gwt-print-it) all what is left on the right side of printable page is cut off and stays not printed at all

2012-09-20 Thread Jeffrey Chimene
On 09/18/2012 06:02 PM, Jan Przybylo wrote: no, I don't want to print double-sided document. @media css has nothing to do with double-sided printing. Cheers, jec let me explain it: imagine you have empty page with just one big image inside 'body' element: body img src=...

Re: printing problem: when I print content of my iframe (I use gwt-print-it) all what is left on the right side of printable page is cut off and stays not printed at all

2012-09-20 Thread Ed
Have You tried a href=# view-source:https://hrapp1.secep.net/HR/cyberobjects/CyberObjects.html?LOADTABLENAME=PEOPLELOADTABLEGROUP=PEOPLELOADTABLEACTION=GETID=20798# onclick=print(); return false;Print/a Using javascript print function E On Thu, Sep 20, 2012 at 7:46 AM, Jeffrey Chimene

Re: printing problem: when I print content of my iframe (I use gwt-print-it) all what is left on the right side of printable page is cut off and stays not printed at all

2012-09-20 Thread Freller
Hi Jan, This is browser/OS dependable. Regards, Freller Em segunda-feira, 17 de setembro de 2012 14h29min04s UTC-3, Jan Przybylo escreveu: I print big form that has fixed dimensions. If I'd use Letter parer size it should fit in 4 pages (2 pages wide and 2 pages high). I already

Re: printing problem: when I print content of my iframe (I use gwt-print-it) all what is left on the right side of printable page is cut off and stays not printed at all

2012-09-18 Thread Jeff Chimene
Are you using @media css? http://www.w3.org/TR/CSS2/page.html#page-selectors On Mon, Sep 17, 2012 at 12:29 PM, Jan Przybylo jan.przyb...@gmail.comwrote: I print big form that has fixed dimensions. If I'd use Letter parer size it should fit in 4 pages (2 pages wide and 2 pages high). I already

Re: printing problem: when I print content of my iframe (I use gwt-print-it) all what is left on the right side of printable page is cut off and stays not printed at all

2012-09-18 Thread Jan Przybylo
no, I don't want to print double-sided document. let me explain it: imagine you have empty page with just one big image inside 'body' element: body img src=... style=width: 3000px; height: 2200px; / /body lets say it looks like this: http://why.net.pl/tmp/0.png and you want to print

printing problem: when I print content of my iframe (I use gwt-print-it) all what is left on the right side of printable page is cut off and stays not printed at all

2012-09-17 Thread Jan Przybylo
I print big form that has fixed dimensions. If I'd use Letter parer size it should fit in 4 pages (2 pages wide and 2 pages high). I already started using PrintIt class (gwt-print-it) and it solves most basic problems for me. But when I try to print whole big form it only prints top left as

Re: Iframe takes more time to load local html page in IE

2012-08-17 Thread David
Try using RequestBuilder.java instead of the iframe. On Wednesday, August 15, 2012 9:04:44 PM UTC-4, mathews wrote: Iframe is taking more time to load local html page in IE when compared to Firefox. if we add iframe in new dialog/window, it is a taking more time to load the page in IE

Iframe takes more time to load local html page in IE

2012-08-16 Thread mathews
Iframe is taking more time to load local html page in IE when compared to Firefox. if we add iframe in new dialog/window, it is a taking more time to load the page in IE, is there any way to speed up the Iframe page load in IE. Thanks. -- You received this message because you

Re: GWT Cross Site Iframe Linker and Script Tags

2012-08-08 Thread blurk
On Tuesday, July 24, 2012 11:32:56 AM UTC+2, Daniel wrote: Thanks for the explanation. I find this very interesting. This means I'll be able to extend the CrossSiteIframeLinker Linker and overwrite the fillSelectionScriptTemplate() function to include all required scripts with sth like

Re: Drag and Drop to a RichTextArea / IFrame?

2012-08-06 Thread gangurg gangurg
is there a solution for this ? How do we do drag and drop in richTextArea On Wed, Oct 26, 2011 at 9:55 AM, Derek derekad...@gmail.com wrote: I'm trying out some of the fun drag-and-drop stuff in GWT. My current attempt is to drag a file into a richtextarea, but nothing seems to be working

Re: GWT Cross Site Iframe Linker and Script Tags

2012-07-24 Thread Thomas Broyer
On Monday, July 23, 2012 4:33:01 PM UTC+2, Daniel wrote: Hi, can someone please explain to me the technical details why the xsiframe Link can not compile GWT apps which load script tags in their .gwt.xml module? It gives the following error: [ERROR] The Cross-Site-Iframe linker does

Re: GWT Cross Site Iframe Linker and Script Tags

2012-07-24 Thread Daniel
Thanks for the explanation. I find this very interesting. This means I'll be able to extend the CrossSiteIframeLinker Linker and overwrite the fillSelectionScriptTemplate() function to include all required scripts with sth like document.write() or

GWT Cross Site Iframe Linker and Script Tags

2012-07-23 Thread Daniel
Hi, can someone please explain to me the technical details why the xsiframe Link can not compile GWT apps which load script tags in their .gwt.xml module? It gives the following error: [ERROR] The Cross-Site-Iframe linker does not support script tags in the gwt.xml files, but the gwt.xml file

Show Iframe of html server that was uploaded to a server first

2012-07-16 Thread Saik0
Hi @all, i have created a html file within my gwt app and uploaded it to a server. As a callback i retriev the server url from this file. Now i wan't to display this html file into a iframe with the com.google.gwt.user.client.ui.Frame Widget. This Widget is a child of the DialogBox Widget

GWT calling java from JS doesn't work with Iframe

2012-07-15 Thread Ahmed Saad
Hi All I have a problem that I can java from javascript normally in GWT application but when I run it in Iframe it doesn't work here is the work that works fine if I run from browser window but doesnt work in Iframe the html file input type=button onclick=doIT() value=Do class=fbbotton

Re: GWT calling java from JS doesn't work with Iframe

2012-07-15 Thread Joseph Lust
One way this error can also be caused is that you did not *publish* that public method before you called it. You need to ensure you've got a JSNI method (like the one you posted) that is run onModuleLoad to add your public JS functions to the window's namespace. Of course you can use GWT to

AdSense without iframe

2012-07-03 Thread Kulnor
I've been looking for an easy way to include an AdSense DIV in my GWT app without using an iframe and my current approach is as follows: (1) In the application host page (i.e. application.html), I include the standard adsense boiler code and put a @id on the wrapping div like: div id=adsense

Re: preview in case of iframe

2012-07-02 Thread gpike
The document inside you iFrame is a completely separate document and can be from a different domain as well so won't get any events just like you don't get events from other browser tabs. However you could communicate across the boundary by defining your own api's. What I mean is you can add

Re: preview in case of iframe

2012-07-02 Thread bhomass
thanks, I figured as much. The two documents are independent DOM structures and while the preview is global, it is only global within one DOM structure. I got what I want w/o preview, using *addDomHandler. **as long as you have the handle to components in both frames, this works quite fine.*

preview in case of iframe

2012-07-01 Thread bhomass
, if an iframe is added into the picture, the previewer is apparently not so global. things happening inside the iframe does not trigger DOM.preview(evt), and therefore does not get previewed. I suppose this makes sense, that the iframe has an independent DOM structure from the parent. Does any one

Re: Popup Panels are always displayed behind the youtube iframe

2011-12-27 Thread George Simon K
I too had this issue. Opaque fixed. Thanks On Tue, Sep 20, 2011 at 12:33 AM, erebrus ereb...@gmail.com wrote: Thanks, that did it. On Sep 19, 2:47 pm, KevMo kevinps...@gmail.com wrote: Try adding wmode=Opaque to the end of the iFrame URL. On Sep 19, 1:16 am, erebrus ereb...@gmail.com

Calling a method in parent of an iframe

2011-12-07 Thread Shrivallabh
Folks, I have 2 modules - A and B. I have a set of tabs as a part of module A. tab 5 contains and iframe. The contents of the iframe are loaded from module B. I need to find a way to refresh the contents of tab 4 from within the iframe in tab5. It should be somethings like 1. Get my parent

IFrame to https url not working in Firefox

2011-11-17 Thread gerry
Hi all, I have an application that is secured with an unsigned ssl certificate. I have a second application, which is a TabPanel, and on one tab I need to include the first application, as an iFrame, using a Frame object. In development mode, in chrome, it returns a 501 (net

Re: IFrame to https url not working in Firefox

2011-11-17 Thread Paul Robinson
: Hi all, I have an application that is secured with an unsigned ssl certificate. I have a second application, which is a TabPanel, and on one tab I need to include the first application, as an iFrame, using a Frame object. In development mode, in chrome, it returns a 501 (net

Re: IFrame to https url not working in Firefox

2011-11-17 Thread gerry
Hi Paul, Thanks for the reply. Sorry, I was misleading in my description of the problem. Yes, the certificate is signed by us, and it generates a browser warning. But the application does not work at all when called from inside an iframe. On 17 Νοέ, 12:18, Paul Robinson ukcue...@gmail.com wrote

Drag and Drop to a RichTextArea / IFrame?

2011-10-26 Thread Derek
I'm trying out some of the fun drag-and-drop stuff in GWT. My current attempt is to drag a file into a richtextarea, but nothing seems to be working correctly. It works fine if I use a FlowPanel or some other GWT widget, but not a RichTextArea despite it have an addDropHandler method. Anyone have

Instead of Adsense (can't iframe) I've setup a affiliate banner rotator. Example Demo and source inside...

2011-10-08 Thread Brandon Donnelson
Since I can't stick Adsense in an iframe, I've been trying out Plan B, affiliate banner rotator inside an [iframe] with serialized loading so you don't get the same banner each time. Souce demo and More on the wiki (in action here)- http://code.google.com/p/gwt-examples/wiki

Re: iframe with GWT

2011-10-05 Thread CSchulz
Yeah, I know about the Frame element but I don't know how to edit the head and body areas inside of it or pass it HTML to fill itself with. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: iframe with GWT

2011-10-05 Thread CSchulz
So I found this link http://bealetech.com/blogs/sean/2010/01/embedding-html-document-iframe-gwt and I got it to work using these functions: final IFrameElement iframe = Document.get().createIFrameElement(); FlowPanel innerBox = new FlowPanel() { @Override protected void onLoad

Re: iframe with GWT

2011-10-05 Thread Tomasz Gawel
and the example without a line of JSNI :) but be aware of same-domain restriction when retrieving reference iframe's content. public class IframeStyleExample implements EntryPoint { public static StyleElement addStyleSheet(FrameElement frameElement, String

Re: iframe with GWT

2011-10-05 Thread CSchulz
Thanks! This looks awesome! I'll give it a try. I never would've understood enough on how GWT interacts with the DOM to do this myself, but this'll be a very educational exercise for me. Thanks again! -- You received this message because you are subscribed to the Google Groups Google Web

iframe with GWT

2011-10-04 Thread CSchulz
I'm wondering how I can create and iframe with GWT and inject some style type=text/css body{background-color: red;} /style type of stuff into the head and then inject a bunch of divs into the body. I don't need to be able to link to them at all or apply any handlers, so I would think this would

Popup Panels are always displayed behind the youtube iframe

2011-09-19 Thread erebrus
Hi, I have HTMLPanel in which I include an iframe with a youtube. My problem is that whenever I display a popup panel (e.g. custom made dialog boxes) that youtube iframe is always displayed on top of the popup panel? Does anybody know how to solve this problem? Thanks -- You received

what is the usage of iframe:__gwt_historyFrame ?

2011-09-19 Thread wahaha
in my host page,if there is no iframe which id is __gwt_historyFrame,i also can make the application to support history. why there must be a iframe? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google

Re: Popup Panels are always displayed behind the youtube iframe

2011-09-19 Thread KevMo
Try adding wmode=Opaque to the end of the iFrame URL. On Sep 19, 1:16 am, erebrus ereb...@gmail.com wrote: Hi, I have HTMLPanel in which I include an iframe with a youtube. My problem is that whenever I display a popup panel (e.g. custom made dialog boxes) that youtube iframe is always

Re: what is the usage of iframe:__gwt_historyFrame ?

2011-09-19 Thread wahaha
anyone knows? On Sep 19, 5:09 pm, wahaha il...@yahoo.com.cn wrote: in my host page,if there is no iframe which id is __gwt_historyFrame,i also can make the application to support history. why there must be a iframe? -- You received this message because you are subscribed to the Google Groups

Re: what is the usage of iframe:__gwt_historyFrame ?

2011-09-19 Thread Thomas Broyer
This iframe is needed for IE6-7 support. If you don't need to support those, you can safely remove it. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web

Re: Popup Panels are always displayed behind the youtube iframe

2011-09-19 Thread erebrus
Thanks, that did it. On Sep 19, 2:47 pm, KevMo kevinps...@gmail.com wrote: Try adding wmode=Opaque to the end of the iFrame URL. On Sep 19, 1:16 am, erebrus ereb...@gmail.com wrote: Hi, I have HTMLPanel in which I include an iframe with a youtube. My problem is that whenever I

Iframe events

2011-09-01 Thread noach
I am using a native event previewer to detect if the user has pressed certain keys. However, part of my interface contains an iframe displaying another page. If the user has clicked inside the frame, key presses events aren't previewed. Is there a way I can get the iframe to foward events back

[gwt-contrib] Re: DirectInstallLinker should not immediately remove the script tag it has inserted into the IFRAME... (issue1454802)

2011-07-25 Thread fredsa
Committed in r10293 http://gwt-code-reviews.appspot.com/1454802/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   3   4   >