Re: [qooxdoo-devel] constructor / inheritance confusion

2008-12-18 Thread Kenny Tilton
Petr Kobalíček wrote: > Hi Kenny, > > I have short node to your problem. You need to pass constructor > parameters to table constructor. > > for example: > >construct : function (a, b) { >this.base(arguments, a, b); >} > > Was this your problem ? Yes, thanks. cheers, kt

Re: [qooxdoo-devel] constructor / inheritance confusion

2008-12-18 Thread Petr Kobalíček
Hi Kenny, I have short node to your problem. You need to pass constructor parameters to table constructor. for example: construct : function (a, b) { this.base(arguments, a, b); } Was this your problem ? Cheers - Petr 2008/12/18 Kenny Tilton : > I wanted to subclass qx.ui.table.T

[qooxdoo-devel] constructor / inheritance confusion

2008-12-18 Thread Kenny Tilton
I wanted to subclass qx.ui.table.Table because of a commonality I could reuse: qx.Class.define("nuvia.explorer.widget.ItemTable", { extend : qx.ui.table.Table, construct : function () { this.base(arguments); } }); Then I use it like this: var custom = { tableCo