Nice one, thanks... I thought that might be it, but still no dice.

In the meantime I have worked around it by creating a subclass of
checkbox and adding instances of it to the list, but I'd still like to
find out what I'm doing wrong with the controller.

Cheers,

Will


2009/4/30 Derrell Lipman <[email protected]>:
> 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
>
>

------------------------------------------------------------------------------
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