#4529 closed defect (fixed)
dojox.layout.FloatingPane
Reported by: | guest | Owned by: | Tom Trenka |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | DojoX Layout | Version: | 0.9 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
The close() function ignores the fact, that the Floatingpane might contain more widgets which are not getting destroyed. After changing the last line in the close()-method to "destroyRecursive" all child widgets should be destroyed also.
Working code:
close: function() {
summary: close and destroy this widget if (!this.closable) { return; } dojo.unsubscribe(this._listener); this.hide(dojo.hitch(this,"destroyRecursive"));
},
Change History (2)
comment:1 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 11 years ago by
Component: | Dojox → DojoX Layout |
---|
Note: See
TracTickets for help on using
tickets.
(In [10583]) fixes #4529 - floatingpane should destroy chilren on .close(), too.