The reason probably is that (by default) a GWT app is loaded within an iframe, i.e. as another HTML page (*.cache.html), which doesn't contain the MotW. Try using the "xs" or "xsiframe" linker, i.e. add one of these lines to your *.gwt.xml: <add-linker name="xs" /> <add-linker name="xsiframe" /> Those linkers use *.cache.js" files, so the MotW in your host page should be enough. The "xs" linker prevents you from using DevMode (you'd have to use a different *.gwt.xml when developping your app than when compiling it), while the "xsiframe" should work with DevMode (but I don't know whether it'll work once compiled).
-- 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.
