Opened 11 years ago
Closed 11 years ago
#13895 closed defect (duplicate)
Dialog Placement in DOM
Reported by: | jbest | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | tbd |
Component: | Dijit | Version: | 1.6.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
In postCreate the domNode for a dialog is placed back into the body and not their original parentNode. This can lead to things like ASP.NET controls breaking due to being placed outside of the <form> tag.
Example of original markup:
<body> <form> <div data-dojo-type="dijit.Dialog"><!-- some controls that rely on being in a form --!></div> </form> </body>
After the dialog is created:
<body> <form></form> <div data-dojo-type="dijit.Dialog"><!-- some controls that rely on being in a form --!></div> </body>
Attachments (1)
Change History (3)
Changed 11 years ago by
Attachment: | fix_dialog_placement.patch added |
---|
comment:1 Changed 11 years ago by
comment:2 Changed 11 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
This is done intentionally, see explanation in duplicate ticket #3300.
Note: See
TracTickets for help on using
tickets.
Added a fix + test.