Hi,
I would keep a reference to the tree in an instance variable:
this.myTree = new qx.ui.tree.Tree("Contacts");
Somewhere else in code you would try to reach this reference:
...
myOtherWindow.myTree.setHtmlProperty("id","list");
...
greetings,
Dimitri
ruben gonzalvez wrote:
>
> Hi all
Hi,
in a table you can set columns invisible:
this.table.getTableColumnModel().setColumnVisible(2, false);
You can also change the tablemodel:
this.table.getTableModel().setData(this._fetchDataWith_4_columns());
this.table.getTableModel().setColumns([ "ID", "A nu
Hello,
by looking at the code of ListView I get the feeling that it does not
support the updating of data out of the box.
I would suggest to use qx.ui.table.Table instead.
Changing the data then becomes easy:
var tableModel = new qx.ui.table.model.Simple();
var rowData = []; ... fill rowdata
Hello,
I have created a fix for the aptana outline view for qooxdoo 0.7.
This works for me on eclipse 3.2.1.
(warning : this does not provide any help for code-completion)
The outline view is fixed by adding a few lines of javascript code in the
following file:
eclipse/plugins/com.aptana.ide.scr