On 8/20/07, hapershield hapershield <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
>    I am using qooxdoo.7.1 alpha version.How to set tree to a particular
> column of a table(Tree virtual).
>
> I used setTreeColumn() function, but it is not working.
>
> Please let me know how to set tree in paticular column.
>
> My code is as follows
>
I don't see anything wrong with what you're doing, but please try the
following:

- Remove the line at the end that says dataModel.setTreeColumn(1)

- Change your instantiation of the tree object to request the tree column as
part of the "custom" parameter, as follows.  If this works, please post a
bug report to bugzilla since (I think) your initial attempt should have
worked as well.

var tree = new qx.ui.treevirtual.TreeVirtual(

        [

          "NeighbourId",

          "Interface",

          "Last Accessed"

        ],

        {

          treeColumn : 1

        });

Derrell
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to