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:
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
Code:
DynamicForm dynamicForm = new DynamicForm();
dynamicForm.setImplicitSave(true);
dynamicForm.setImplicitSaveDelay(0);
FileItem fileItem = new FileItem();
dynamicForm.setFields(fileItem);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