Hi,
I am trying to write a small SmartGWT 2.2 HelloWorld application using the latest GWT 2.1 RC1 toolkit on eclipse. But it does not seem to work for me. It seems to fail when I try to instantiate the SmartGWT IButton object in the onModuleLoad() call. Does anyone know of any issues regarding devloping SmartGWT apps with the latest GWT toolkit? Sample code below.
Thanks,
Mike
public void onModuleLoad() {
IButton button = new IButton("Hello World");
button.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
SC.say("Hello World from SmartGWT");
}
});
button.draw();
}
I am trying to write a small SmartGWT 2.2 HelloWorld application using the latest GWT 2.1 RC1 toolkit on eclipse. But it does not seem to work for me. It seems to fail when I try to instantiate the SmartGWT IButton object in the onModuleLoad() call. Does anyone know of any issues regarding devloping SmartGWT apps with the latest GWT toolkit? Sample code below.
Thanks,
Mike
public void onModuleLoad() {
IButton button = new IButton("Hello World");
button.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
SC.say("Hello World from SmartGWT");
}
});
button.draw();
}
Comment