Re: [qooxdoo-devel] qx.ui.tree.tree help!

2007-06-25 Thread dimitri van der veken
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

Re: [qooxdoo-devel] Tables and ListViews

2007-06-22 Thread dimitri van der veken
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

Re: [qooxdoo-devel] Change data of ListView

2007-06-22 Thread dimitri van der veken
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

Re: [qooxdoo-devel] Aptana JSEditor and the new OO syntax in qooxdoo 0.7

2007-06-19 Thread dimitri van der veken
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