i've started to play with GWT recently; i've made a simple test program:
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.Window;
public class Main implements EntryPoint {
public Main() {
}
public void onModuleLoad() {
Window.alert("hello world");
}
}
while this runs ok locally, and the dialog box appears, when i put the generated files (from the build/www folder) on my googlepages, nothing happens; the javascript console shows no errors. any idea what's wrong?
thanks for any help.
gwt problem
Started by kyuzo, Jan 23 2007 01:06 PM
No replies to this topic
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users












