I have the same problem in devmode, with a compiled application JSP works fine. Try reloading the page or use the *. html for devmode. I'm using *. html
On Aug 7, 8:19 pm, shinokamparos <[email protected]> wrote: > Hi Luis, > > this is my entrypoint: > > public void onModuleLoad() { > > loginPanel = new LoginPanel(); > RootPanel.get("login").add(loginPanel); > > } > > On Aug 5, 1:49 am, Luis Daniel Mesa Velasquez > > > > <[email protected]> wrote: > > Can you post your EntryPoint? maybe you nned to check the > > RootPanel.get() methods and check everything's where it's supposed to > > be... > > > On Aug 3, 7:55 pm, shinokamparos <[email protected]> wrote: > > > > Hi all, > > > I have a GWT module I want to load into a jsp page. My nocache.js > > > file > > > load correctly from the server as per Firebug. The problem is that > > > the > > > module does not display. I don't know what the problem, the code is > > > taken form the generated hosted page, which works, so I see no reason > > > why there should be a problem. My jsp file is set out below. Any help > > > would be greatly apreciated. > > > <?xml version="1.0" encoding="UTF-8" ?> > > > <%@ page language="java" contentType="text/html; charset=UTF-8" > > > pageEncoding="UTF-8"%> > > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > > > <html> > > > <head> > > > <title>Login</title> > > > <meta http-equiv="content-type" content="text/html; > > > charset=UTF-8"></meta> > > > <meta name="gwt:module" content="com.accounts.Login/ > > > com.accounts.Login"></meta> > > > <script type="text/javascript" language="javascript" src="../ > > > com.accounts.Login/com.accounts.Login.nocache.js"></script> > > > </head> > > > <body> > > > <iframe src="javascript:''" id="__gwt_historyFrame" > > > tabIndex='-1' style="position: absolute; width: 0; height: 0; border: > > > 0"></iframe> > > > <p>Hello Login</p> > > > <div id="login"></div> > > > </body> > > > </html> -- 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.
