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
-~----------~----~----~----~------~----~------~--~---

Reply via email to