Opened 11 years ago
Last modified 7 years ago
#12769 closed defect
_createWrapper() dojo.connect(widget, "destroy", function(){ dojo.destroy(wrapper); delete widget._popupWrapper; }); ing pane position reset when popup (DateTextBox) used inside — at Initial Version
Reported by: | mtyson | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | 1.13 |
Component: | DojoX Layout | Version: | 1.6.0 |
Keywords: | floating pane, popup | Cc: | [email protected]… |
Blocked By: | Blocking: |
Description
Problem: When you have a floating pane with a DateTextBox? in it, when you use the DateTextBox?, the floating pane resets to its previous location
Steps: 1) Create a dojox float pane with a DateText? box in it. 2) Drag the floating pane to new location 3) Click on the date text box. As the popup appears, the float pane with snap back to its previous location
I tracked this down to this line in the popup code:
_createWrapper() dojo.connect(widget, "destroy", function(){
dojo.destroy(wrapper); delete widget._popupWrapper;
});
When the dojo.destroy() calls executes, the floating pane resets.
Note: See
TracTickets for help on using
tickets.