On Thu, Apr 30, 2009 at 12:13 PM, Will Morton <[email protected]> wrote:

>
> /*** listtest/MyBean.js ***/
>
> qx.Class.define("listtest.MyBean", {
>        extend: qx.core.Object,
>        construct: function(name) {
>                this.setName(name);
>        },
>

Will, I don't know if this is your only problem, but you are forgetting to
call the superclass constructor for qx.core.Object. Your constructor should
look like this:

       construct: function(name) {
               this.base(arguments);
               this.setName(name);
       },

Derrell
------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to