Re: [qooxdoo-devel] bug in feedreader-demo

2007-03-14 Thread Cornelius Weiss
sorry, by looking in the code, i saw what's happening. tnx cornelius Cornelius Weiss schrieb: > Hi Hugh, > > tnx for your patience! > > i finally managed to extend the RemoteTableModel as you sugested. Now > the funny thing is, that the table sorting seems not to be working any > more... > > if

Re: [qooxdoo-devel] bug in feedreader-demo

2007-03-14 Thread Cornelius Weiss
Hi Hugh, tnx for your patience! i finally managed to extend the RemoteTableModel as you sugested. Now the funny thing is, that the table sorting seems not to be working any more... if i do a this._tableModel.setColumnSortable('schluessel', true); this._tableModel.sortByColumn('schluessel', tru

Re: [qooxdoo-devel] bug in feedreader-demo

2007-03-14 Thread Fabian Jakobs
Heoolo Cornelius, > Hi devs, > > i just encounterd a bug in the reedreader demo when i wanted to work out > how the table-ui is working. > > When you use the table-sort-headers and sort e.g. by "Subject", the > feeds displayd after are not the once witch where selected in the table. > Thanks

Re: [qooxdoo-devel] bug in feedreader-demo

2007-03-13 Thread Hugh Gibson
> it seems, that the table stips all data witch are not needed by the > talble presentation, and therefore also the id has gone... Ah, looking at source code I can see that - in SimpleTableModel._mapArray2RowArr. Converts a map to an array. You could easily use RemoteTableModel - derive a class

Re: [qooxdoo-devel] bug in feedreader-demo

2007-03-13 Thread Cornelius Weiss
Hi Hugh, tnx for your replay. What you sugest, is exactly what i do. But if i do a var selectedEntry = this._table.getSelectionModel().getAnchorSelectionIndex(); var p_serie = this._tableModel.getRowDataAsMap(selectedEntry); my p_serie only contains the columns, witch are also present in the

Re: [qooxdoo-devel] bug in feedreader-demo

2007-03-12 Thread Hugh Gibson
> This leeds to a problem i have in the app i try to write. How can i > have a persistant id/object in a table without displaying it to the > user? When calling setColumns (implemented in qx.ui.table.AbstractTableModel), you specify two arrays. The first is the column names, the second is the k

[qooxdoo-devel] bug in feedreader-demo

2007-03-11 Thread Cornelius Weiss
Hi devs, i just encounterd a bug in the reedreader demo when i wanted to work out how the table-ui is working. When you use the table-sort-headers and sort e.g. by "Subject", the feeds displayd after are not the once witch where selected in the table. This leeds to a problem i have in the app