Re: [qooxdoo-devel] Qooxdoo widgets registry access

2007-06-11 Thread zindel
Hi, Fabian! That looks great! Seems to be what I was looking for. Thanks a lot ! Alexei > > > > Is there any way to access the qooxdoo widget somehow except the direct > > approach (by name in the code)? > > > > Here the example: > > // Application main function > > qx.Proto.main = function(e) {

Re: [qooxdoo-devel] Qooxdoo widgets registry access

2007-06-11 Thread Fabian Jakobs
Hi Alexei, Hello, List Is there any way to access the qooxdoo widget somehow except the direct approach (by name in the code)? Here the example: // Application main function qx.Proto.main = function(e) { var layout = new qx.ui.core.VerticalBoxLayout(); layout.addToDocument();

Re: [qooxdoo-devel] Qooxdoo widgets registry access

2007-06-11 Thread zindel
Thanks, Leander > Without an var before the variable name ( var layout = -> layout = ) > your object should be global accessable. > > Another way is to add it to the parent class (this._layout) or as an > property. Well, these two ways are not acceptable for me. I would like to know the most

Re: [qooxdoo-devel] Qooxdoo widgets registry access

2007-06-11 Thread Leander Hanwald
Hi Without an var before the variable name ( var layout = -> layout = ) your object should be global accessable. Another way is to add it to the parent class (this._layout) or as an property. Or look at the guibuilder class, I think there is another way used which I'm not remember :) Greeti

[qooxdoo-devel] Qooxdoo widgets registry access

2007-06-11 Thread zindel
Hello, List Is there any way to access the qooxdoo widget somehow except the direct approach (by name in the code)? Here the example: // Application main function qx.Proto.main = function(e) { var layout = new qx.ui.core.VerticalBoxLayout(); layout.addToDocument(); var b