I developed a diagnostic app interface using GWT.  (Akin to a car diagnostic 
device on steroids).
Now need to allow subject matter experts to easily add/modify/maintain 
help-tips via separately developed Html files.

I can select & display web sites in a Frame container, but yet unable to get 
an html file to display in Frame.

Believe problem is how html file is addressed.

Simple test cases in development mode don't display anything yet, using GWT 
2.0.3:

// 1.)  test.html was located in BaseUrl dir
   String xxx = GWT.getModuleBaseURL() + "test.html";
   frame = new Frame(xxx); 

// 2.)  Hardcoded url:
   frame = new 
Frame("http://127.0.0.1:8888/com.mycompany.project.test.html";);

// 3.)  Put test.html at top of C drive:
   frame = new Frame("http://127.0.0.1:8888/C:/test.html";);

Where am I missing the boat, or maybe you have a simple example ?

Thankyou in advance.  Barry

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