#226 closed defect (worksforme)
Form post parameter ordering/complete drop off face of planet
Reported by: | Owned by: | anonymous | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Core | Version: | |
Keywords: | Cc: | [email protected]… | |
Blocked By: | Blocking: |
Description
I'm not sure if it's the file upload patch or Dylan's recent submit button change, but the ordering of form submission parameters has changed in a fatally bad way for me. A form layout like this:
<form method="post" action="/foo" > <fieldset> <div id="blah"> <input type="hidden" name="foo" value="foo"/> </div>
<fieldset> <input type="text" value="blah" /> </fieldset>
<input type="submit" name="Submit" value="Save" />
</fieldset> </form>
It looks like the Submit element is being placed in the dojo.io.bind() post encoding BEFORE any of the other form inputs somehow, which is bad for me..
Ughh..This is a totally BS ticket, I'll create a proper patch somehow later on tonight, but if anyone knows immediately what it is I'd be very grateful. This seems to have happened between today and yesterday, so it shouldn't be too hard to track down.
Change History (4)
comment:1 Changed 15 years ago by
Component: | General → Core |
---|
comment:2 Changed 15 years ago by
comment:3 Changed 15 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
I'm either retarded and was doing something wrong earlier today or you fixed it. Either way I'm happy so I'll say thank you just so I can pretend I'm not retarded.
Submit buttons shouldn't be getting send via bind(), at least not with XmlHttp?.