Opened 13 years ago
Closed 13 years ago
#5756 closed defect (duplicate)
Form submit doesn't work after dojo.io.iframe.send
Reported by: | guest | Owned by: | anonymous |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | General | Version: | 1.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
I use the send function like this :
dojo.io.iframe.send({url: 'x.do?method=setVal,
form: document.forms[0], handleAs: "application/json",
...
The send function of dojo.io.iframe call _fireNextRequest. This function ends with the foolowing instruction :
fn.target = this._iframeName;
This means that the target of the form passed to the send() function is overwritten each time I call the send function.
The result is that any call to the submit function of the form will be redirected to the hidden IFrame.
Note: See
TracTickets for help on using
tickets.
Duplicate of #5755