Re: Simple DOM programming example using GWT?

2010-01-27 Thread Trevis
I agree with djabi, that seem like a bad way to use GWT. On Jan 26, 9:24 am, Djabi wrote: > Why don't you try > > void onModuleLoad() { > RootPanel.get().add(new HTML("HelloWorld")); > > } > > If you really want to deal directly with the dom look at > com.google.gwt.user.client.DOM but this is pr

Re: Simple DOM programming example using GWT?

2010-01-26 Thread Djabi
Why don't you try void onModuleLoad() { RootPanel.get().add(new HTML("HelloWorld")); } If you really want to deal directly with the dom look at com.google.gwt.user.client.DOM but this is probably not the way you want to use GWT On Jan 25, 11:07 am, markww wrote: > Ah actually it looks like this