Ticket #6544 (closed defect: fixed)
when moving dialog, popups (tooltipdialog etc) stays open
| Reported by: | liucougar | Owned by: | liucougar |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.2 |
| Component: | Dijit | Version: | 1.1.0 |
| Severity: | normal | Keywords: | |
| Cc: | elazutkin |
Description
open test_Dialog.html, click the first button, click into field Date (or Time), so that the popup is shown
now try moving the dialog around, the opened popup won't be closed
my proposed solution is to change line 61 in dojo/dnd/Movable.js from
dojo.stopEvent(e);
to
e.preventDefault();
so that the event can propogate to the top document and the diijit popup manager can close any opened popups properly, while preventDefault will prevent the mouseDown event to select anything
(I think there may be some other dojo.stopEvent in dijit/dojo which should be changed to preventDefault too)
Change History
Note: See
TracTickets for help on using
tickets.