SmartClient Version: v8.2p_2012-06-10/Pro Deployment (built 2012-06-10)
Browser: Crome 21.0.1180.83 m
The RPC tab shows that the call was done but the DSCallback code is not executed
This is a DynamicForm with a file, and I have added the request object to indicate that it must always call DSCallback.
Browser: Crome 21.0.1180.83 m
The RPC tab shows that the call was done but the DSCallback code is not executed
This is a DynamicForm with a file, and I have added the request object to indicate that it must always call DSCallback.
Code:
DSRequest req = new DSRequest();
req.setWillHandleError(true);
form.saveData(new DSCallback() {
@Override
public void execute(DSResponse response, Object rawData, DSRequest request) {
progress(false);
GWT.log("submit Complete");
}
},req);