In GWT 1.5 I have an implementation like:
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/FileUpload.html

The difference is that I have 2 FileUpload entries, instead of 1:
final FileUpload fileUploadDataset = new FileUpload();
fileUploadDataset.setName("fileUploadDataset");
verticalPanel.add(fileUploadDataset);

final FileUpload fileUploadMetadata = new FileUpload();
fileUploadDataset.setName("fileUploadMetadata");
verticalPanel.add(fileUploadMetadata);

On the server I only receive 1 file (the first). This was working fine
in GWT 1.4 but not in GWT 1.5.

Any idea what could be my mistake? Or is this simply just a bug in GWT
1.5?



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to