I have a GWT app where I have a menu module and a session control module. I load them as two separate .js apps in one frame:
<script type="text/javascript" language="javascript" src="/context1/ sessionmanager.nocache.js"></script> <script type="text/javascript" language="javascript" src="/context2/ mikemenu.nocache.js"></script> Each has a .css file associated with it through the module .gwt.xml file. Having used gwt-maven to create the projects, I left the default stylesheets as Application.css. Even though the two stylesheets are in separate web apps with separate URLs, only one loads because the script that does the loading only looks at the unqualified name. I'm not sure if running two .js scripts in the same frame is supported or not, but there is a chance for stylesheet name collision. Giving the stylesheets different names solves the problem. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
