Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

How to Access Callback of Form ImplicitSave?

$
0
0
I have a DynamicForm with a single FormItem, a FileItem. I get my desired appearance and behavior (picked file is immediately uploaded on selection) with this code:
Code:

DynamicForm dynamicForm = new DynamicForm();
dynamicForm.setImplicitSave(true);
dynamicForm.setImplicitSaveDelay(0);

FileItem fileItem = new FileItem();
         
dynamicForm.setFields(fileItem);

I added an "add" DMI to add some metadata field values to the DSRequest on the way in. All good so far.

Now I want to present a form to the user, to confirm/correct the metadata, in the callback.

How can I access the callback and/or DSResponse of this operation?

--------------------
SmartGWT 4.1 January-ish

Viewing all articles
Browse latest Browse all 4756

Trending Articles