On Wed, Oct 14, 2009 at 13:01, Derrell Lipman <
[email protected]> wrote:

> On Wed, Oct 14, 2009 at 13:00, panyasan <[email protected]> wrote:
>
>>
>> The error was:
>>
>> this.__header.getContainerLocation() is null
>>
>> http://localhost:8080/Bibliograph/qooxdoo-trunk/framework/source/class/qx/ui/table/pane/Scroller.js
>> Line 1834
>>
>>
> Oh, ok. It's happening too early, before the stuff is rendered. Stand by...
>

Uggh. That gets really ugly to implement cleanly. Instead, try changing your
code to the following:

var tree = new qx.ui.treevirtual.TreeVirtual( ["blah"] );
tree.addListener("appear",
                         function()
                         {
                           this.setHeaderCellHeight(0);
                         });
this.getRoot().add(tree);
------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to