summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorAnna Koskinen <anna@vaadin.com>2013-01-09 15:03:31 +0200
committerAnna Koskinen <anna@vaadin.com>2013-01-09 15:03:31 +0200
commit80246426e62c6b2499be6eb705dd287483bf5164 (patch)
tree180ca7d3e323f1bfee0790303cd7ba13c95fd827 /server
parent3c0ade1825e580d370d31e8748423d6beb0fa0f3 (diff)
downloadvaadin-framework-80246426e62c6b2499be6eb705dd287483bf5164.tar.gz
vaadin-framework-80246426e62c6b2499be6eb705dd287483bf5164.zip
Merge of (#10073) to Vaadin 7.
DragDropWrapper does not work correctly with multiple batch uploads. Change-Id: Ib576ebf6f687c2b2ebda86e6ad1003408250140c
Diffstat (limited to 'server')
-rw-r--r--server/src/com/vaadin/ui/DragAndDropWrapper.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/server/src/com/vaadin/ui/DragAndDropWrapper.java b/server/src/com/vaadin/ui/DragAndDropWrapper.java
index 23641f285e..6c6aa3c3f4 100644
--- a/server/src/com/vaadin/ui/DragAndDropWrapper.java
+++ b/server/src/com/vaadin/ui/DragAndDropWrapper.java
@@ -58,7 +58,7 @@ public class DragAndDropWrapper extends CustomComponent implements DropTarget,
(String) rawVariables.get("ft" + i)); // mime
String id = (String) rawVariables.get("fi" + i);
files[i] = file;
- receivers.put(id, file);
+ receivers.put(id, new ProxyReceiver(id, file));
markAsDirty(); // paint Receivers
}
}
@@ -106,7 +106,7 @@ public class DragAndDropWrapper extends CustomComponent implements DropTarget,
}
- private Map<String, Html5File> receivers = new HashMap<String, Html5File>();
+ private Map<String, ProxyReceiver> receivers = new HashMap<String, ProxyReceiver>();
public class WrapperTargetDetails extends TargetDetailsImpl {
@@ -222,11 +222,12 @@ public class DragAndDropWrapper extends CustomComponent implements DropTarget,
getDropHandler().getAcceptCriterion().paint(target);
}
if (receivers != null && receivers.size() > 0) {
- for (Iterator<Entry<String, Html5File>> it = receivers.entrySet()
- .iterator(); it.hasNext();) {
- Entry<String, com.vaadin.ui.Html5File> entry = it.next();
+ for (Iterator<Entry<String, ProxyReceiver>> it = receivers
+ .entrySet().iterator(); it.hasNext();) {
+ Entry<String, ProxyReceiver> entry = it.next();
String id = entry.getKey();
- Html5File html5File = entry.getValue();
+ ProxyReceiver proxyReceiver = entry.getValue();
+ Html5File html5File = proxyReceiver.file;
if (html5File.getStreamVariable() != null) {
target.addVariable(this, "rec-" + id, new ProxyReceiver(id,
html5File));