After upgrading SmartGWT to latest version 2.1 (from google repository) and upgrading the GWT to 2.0.3, the DSCallback is no longer called. Is there a known issue with the SmartGWT 2.1 that prevents the DSCallback from working properly ? The code worked perfectly with SmartGWT 1.1 and older version of GWT.
Code:
ds.fetchData(null,new DSCallback() {
public void execute(DSResponse response,Object rawData,DSRequest request) {
SC.say("test");
}
});
Comment