I would create two modules in my GWT app. The first module is the application itself, it will be started and runs as expected. The second module contains only these parts, that are required to run inside the iframe. You can create the iframe and load your app's JavaScript into the iframe's document too, but you don't start the app again, instead you're only starting the second module. Your app will require some logic to access the objects in this second module running inside the iframe.
If your caching is configured well, this won't result in two HTTP requests for the same JavaScript file. You can also use code splitting to prevent the browser from loading one big JavaScript file twice, instead it would load two JavaScript files, one for the app and one very small for the iframe. Regard Jan Ehrhardt 2010/4/6 Marco Gadaleta <[email protected]> > > Can you tell me how i can load a flextable into a page that isn't the main > project page ? > . > 2010/4/6 Marco Gadaleta <[email protected]> > > On android for example, the scrolls of scrollpane are not visible. >> If i can embedded a Flextable inside a iframe i can use the android >> browser scrollbar system... >> That's the right >> >> 2010/4/6 mariyan nenchev <[email protected]> >> >> Why do you need to add widget in frame? Makes no sense! Frame loads other >>> page if you want to have a widget in the frame you have to add it in some >>> way in the other page. :) >>> >>> -- >>> 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]<google-web-toolkit%[email protected]> >>> . >>> For more options, visit this group at >>> http://groups.google.com/group/google-web-toolkit?hl=en. >>> >> >> >> >> -- >> Marco >> > > > > -- > Marco > > -- > 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]<google-web-toolkit%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- 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.
