Re: [qooxdoo-devel] Help with qx.ui.window.Window.dispose()

2006-10-09 Thread Simon Bull
Hi again,Thanks for the advice -- I tried both of your suggestions.  Moving the dispose() call into a qx.ui.window.Window._afterDisappear() method and adding a qx.constant.Event.DISAPPEAR listener to the window.  Unfortunately both methods still results in the same error messages when dispose is ca

Re: [qooxdoo-devel] Help with qx.ui.window.Window.dispose()

2006-10-05 Thread Sebastian Werner
The button appearance will be resetted with the mouseup event. I think you should be able to solve the issue using the "disappear" or "afterDisappear" event instead of directly handling this in the function. Cheers, Sebastian Simon Bull schrieb: > Hi All, > > I'm using Qx 0.6.2-pre (r4314).

[qooxdoo-devel] Help with qx.ui.window.Window.dispose()

2006-10-02 Thread Simon Bull
Hi All,I'm using Qx 0.6.2-pre (r4314). I am trying to dispose() of "closed" qx.ui.window.Window instances so that I can minimise the browser's memory usage.I invoke dispose() at the end of qx.ui.window.Window._onclosebuttonclick().With this change, clicking the close button hide()s the window as us