#13114 closed defect (fixed)
dojox.form.uploader.plugins.Flash is conflicting with methods upload / submit of dojox.form.Uploader
Reported by: | vladar | Owned by: | Mike Wilcox |
---|---|---|---|
Priority: | high | Milestone: | 1.7 |
Component: | DojoX Uploader | Version: | 1.6.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
dojox.form.Uploader has methods:
upload: function(formData) submit: function(form)
But plugin dojox.form.uploader.plugins.Flash treats them differently:
uploadFlash: function() // but must accept formData submitFlash: function(formParams) // but must accept form
This way you can't use uploader programmatically, because in case of flash plugin this will cause inconsistent behavior.
Change History (2)
comment:1 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 10 years ago by
Milestone: | 1.6.2 → 1.7 |
---|
Presumably should be marked 1.7 since fix was only checked into trunk.
Note: See
TracTickets for help on using
tickets.
(In [25286]) Fixes #13114 - Uploader flash plugin not passing post data properly.