Opened 13 years ago
Closed 13 years ago
#5614 closed defect (fixed)
dojo.io.iframe form: API inconsistant
Reported by: | dante | Owned by: | James Burke |
---|---|---|---|
Priority: | low | Milestone: | 1.1 |
Component: | IO | Version: | 1.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
the form: parameter to io.iframe.send does not accept a string to pass through dojo.byId()
dojo.io.iframe.send({ url:"foo.php", form:"bar" }) does not work, however dojo.io.iframe.send({ url:"foo.php", form:dojo.byId("bar") }) behaves correctly.
Attachments (2)
Change History (5)
Changed 13 years ago by
Attachment: | iframe.patch added |
---|
comment:1 Changed 13 years ago by
a better fix would be to, in _base/xhr.js, replace the form arg with the return value of _d.byId(args.form) in _ioSetArgs(), but that has larger implications.
comment:2 Changed 13 years ago by
Milestone: | 1.1 → 1.2 |
---|
comment:3 Changed 13 years ago by
Milestone: | 1.2 → 1.1 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
this was fixed in [12661]
Note: See
TracTickets for help on using
tickets.
small fix