Re: [qooxdoo-devel] inheritance in qooxdoo 0.5 framework

2006-02-21 Thread Sebastian Werner
derrick shaw schrieb: Is there a recommended method for inheritance using the qooxdoo framework. Under the 0.14 framework, my method (see below) of inheriting from qooxdoo classes worked fine, but it nolonger seems to work under version .5 of qooxdoo.Any recommendation? I don't think we

Re: [qooxdoo-devel] inheritance in qooxdoo 0.5 framework

2006-02-21 Thread Chris Ricks
Hi! You'll want to look at the extend method that Qooxdoo adds to the Function prototype: function FunkyNewClass() { ... } FunkyNewClass.extend(QxWindow, "FunkyNewClass"); An example can be found at http://qooxdoo.oss.schlund.de/2005/10/26/inheritance Best regards, Chris derrick shaw wr

[qooxdoo-devel] inheritance in qooxdoo 0.5 framework

2006-02-21 Thread derrick shaw
Is there a recommended method for inheritance using the qooxdoo framework.  Under the 0.14 framework, my method (see below) of inheriting from qooxdoo classes worked fine, but it nolonger seems to work under version .5 of qooxdoo.    Any recommendation? MytechiesFrmDataMonger.prototype = new QxWind