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