Thanks Fabian, always so helpful.
Updated the wiki
http://qooxdoo.org/documentation/articles/comparison_of_class_declarations_between_0.6.x_and_0.7
with your valuable info!.
Fabian Jakobs-2 wrote:
>
> there is now direct equivalent to this syntax. You can still use the old
> version or if you
dperez schrieb:
> Hi,
>
> I'm reviewing in detail the new qooxdoo 0.7, and have a doubt.
>
> For calling the overriden function here is the old syntax:
>
> qx.OO.defineClass("my.cool.Class",
>my.great.SuperClass,
>...
> });
>
> qx.Proto.foo = function(x) {
>my.great.SuperClass.pro
Hi,
I'm reviewing in detail the new qooxdoo 0.7, and have a doubt.
For calling the overriden function here is the old syntax:
qx.OO.defineClass("my.cool.Class",
my.great.SuperClass,
...
});
qx.Proto.foo = function(x) {
my.great.SuperClass.prototype.foo.call(this, x);
};
and the