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) {
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();
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
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
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