Re: [qooxdoo-devel] window.maximize event problem with getWidth() ???

2016-04-16 Thread voger
Well, this was a bit surprise for me too because I thought that "maximize" is fired **after** the widow is maximized. It seems this is not the case. So correctly you are using the "resize" event. To get the dimensions and location you will need to call getBounds(). Here is an example

Re: [qooxdoo-devel] window.maximize event problem getWidth() ?

2016-04-16 Thread media
Hi voger, well it works! thank you for your quick help. regards media -- View this message in context: http://qooxdoo.678.n2.nabble.com/window-maximize-event-problem-getWidth-tp7588272p7588274.html Sent from the qooxdoo mailing list archive at Nabble.com.

[qooxdoo-devel] window.maximize event problem with getWidth() ???

2016-04-16 Thread media
Hi everybody, is it possible to read the current window width in a maximize event? the value win.getWidth() has the old value and i need the new window width. I have this code: var win = new qx.ui.window.Window("Window getWidth Problem please maximize!"); win.setWidth(300);