Thanks for the sugestion. But what do I do with "navigation". GWT is a "one page" show. When the user needs to create an account on the site I need to clear the "Home" content and replace with a GWT generated "Create Account" page/content. But since my home is static HTML, how am I going to do it?
On Nov 3, 3:53 am, rjcarr <[email protected]> wrote: > I would suggest writing your page in the traditional way and then only > filling in GWT for the sections you need. You typically do with > placeholders as divs and tds. For example: > > <body> > Here is some HTML ... > <div id="gwt"></div> > Here is more HTML ... > </body> > > ... > > EntryPoint { > RootPanel.get("gwt").add(new Label("Here is GWT HTML ...")); > ... > > } > > On Nov 2, 7:17 pm, compuroad <[email protected]> wrote: > > > I would like to know if there is a built in way in GWT to read and > > inject HTML content. At least 50% of the site I am planning has static > > HTML content that would not benefit from GWT one page model. I am > > thinking in building a application that reads the static content using > > java.io.File and injects into GWT using the HTML widget. > > > I would like to know if there are any alternatives. > > > Thanks, > > > Wilson --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
