Hi folk, I'm trying to run a GWT application inside a frame. I have an html page with a frame set like this: <FRAMESET ROWS="70%,30%" > <FRAME NAME="Header" SRC="HeaderPage.html"/> <FRAME NAME="gwtRoot" SRC="MyGwtApp.html"/> </FRAMESET>
I have also class MyGwtApp.java that contains the GWT application (obviously MyGwtApp.html is the page that call the generated javascript returned from the compilation of MyGwtApp.java). But once compiled and runned onto the server the page doesn't appear. It seems that the browser doesn't support frames (but it's strange) However i've tried to use an iframe object instead of Frameset/Frame hierarchy by calling directly the javascript application in this way: <iframe src="mygwtapp/mygwtapp.nocache.js" .../> but the browser simply return a frame with the javascript code inside (without interpret it). Do you have any suggestions? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
