Hi,

I haven't found any example in the Qooxdoo source code about calling a 
superclass method of a redefined method of a superclass.

Is this easily possible?

Sample source code:

function BaseClass() {
}
BaseClass.extend(Object, 'BaseClass');

proto.func = function() {
    return 'In base class';
}

function DerivedClass() {
}
DerivedClass.extend(BaseClass, 'DerivedClass');
proto.func = function() {
    // How can I call here BaseClass.func()?
    return 'In derived class';
}

David

                
______________________________________________ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y móviles desde 1 céntimo por minuto. 
http://es.voice.yahoo.com


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to