[qooxdoo-devel] IE 8 problems with qooxdoo 1.3

2011-05-11 Thread s.sanchez
Hi List, I'm encountering problems with my application on IE 8. Actually the app runs very smooth and pretty on all other browsers (Safari, Firefox, Chrome on Mac and Windows), only IE is displaying wrong backgrounds and transparent ugly (not anti aliased) fonts in the color of my root pane backgr

Re: [qooxdoo-devel] Trying to trigger event with fireEvent

2011-05-11 Thread dabd
Marc Puts-2 wrote: > > Hi, > > What are you trying to do? > > The selection property of a selectbox is a qx.data.Array, so its change > event is triggered when the data of that array changes. The event data > must be a map with the keys start/end/items/type (see [1]). > > Why would you want

Re: [qooxdoo-devel] Trying to trigger event with fireEvent

2011-05-11 Thread dabd
Marc Puts-2 wrote: > > Hi, > > What are you trying to do? > > The selection property of a selectbox is a qx.data.Array, so its change > event is triggered when the data of that array changes. The event data > must be a map with the keys start/end/items/type (see [1]). > > Why would you want

Re: [qooxdoo-devel] Trying to trigger event with fireEvent

2011-05-11 Thread Marc Puts
Hi, What are you trying to do? The selection property of a selectbox is a qx.data.Array, so its change event is triggered when the data of that array changes. The event data must be a map with the keys start/end/items/type (see [1]). Why would you want to fire it manually? If you're trying to

[qooxdoo-devel] Trying to trigger event with fireEvent

2011-05-11 Thread dabd
I would like to triger the "change" event on the selection of a VirtualSelectBox. At first I tried selectBox.getSelection().fireEvent("change"); But this gave me an error that said it expected a qx.event.type.Data and not a qx.event.type.Event so I tried: selectBox.getSelection().fireEvent("ch

[qooxdoo-devel] cannot get width size of a widget dynamicaly

2011-05-11 Thread hgc2002
I've used getWidth(), getInnerSize().width, getSizeHint().width but I can't get the width dynamicaly. If I reload the page, the value changes ok, but if I resize the window, the value still the same. This has to be silly, but I can't do it. Please help. Regards, Herman. -- View this message in c

Re: [qooxdoo-devel] Get height of composite of a container

2011-05-11 Thread Adrian Olaru
It seems you need to set the height (and width) of the container first. Here's an example: http://goo.gl/B0YTR You can find a list of demos here: http://manual.qooxdoo.org/1.4/pages/layout/box.html Hope that helps. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Get-height-of-c

Re: [qooxdoo-devel] Core - Sandbox architecture (was: qcl access demo application)

2011-05-11 Thread Ana Rita Sousa
Hi, Christian I've to thank you once again for your help. That it's exactly what I want. Now I think I understand how to do the communication between modules. I'll try to implement it in my project. Ana Rita 2011/5/10 panyasan > > arsousa wrote: > > > > sandbox X -> sandbox Y (public) > > > >

Re: [qooxdoo-devel] Core - Sandbox architecture

2011-05-11 Thread Florin Jurcovici
Hi, I don't know if I got the question right, but here's my take on it. As far as I understand it, the sandbox should be the core API of the application. something like a facade for all relevant services in all modules. This means that whatever one module uses from another module, it has to be pr