Re: [qooxdoo-devel] Table vs. ListView

2007-09-25 Thread Leander Hanwald
But not everyone has many items to show at the same time :) I use listviews when I show under 100 results, which hapens the most time in my applications (more are often not usefull here). And when I scroll inside such a small list, the listview scrolls much faster here. dperez schrieb: > ListView

Re: [qooxdoo-devel] Table vs. ListView

2007-09-25 Thread dperez
ListView perfomance decreases a lot when the number of items increases. This doesn't happen with the table. I use the table for everything, and I even don't include the ListView in my builds. Leander Hanwald wrote: > > Hi > > But on the other hand the listview seems to be much faster then th

Re: [qooxdoo-devel] Table vs. ListView

2007-09-25 Thread Leander Hanwald
Hi But on the other hand the listview seems to be much faster then the table (in every situation I had seen, especially in scrolling) Also the usage of the table is identical to that of windows in every way, which makes it a good choise for many situations. But you are right, the Table has much n

Re: [qooxdoo-devel] Table vs. ListView

2007-09-25 Thread Jim Hunter
I have heard that the ListView is going by the way of the DoDo Bird, it's on it's way out. So if you don't want to redo your code, use the Table. The ListView does not allow for data editing, you can't control the colors of the row elements, and a few other things. So even if it wasn't going away,

[qooxdoo-devel] Table vs. ListView

2007-09-25 Thread Kolodziej Christian
Hello everybody, instead of a new problem I want to ask a little philosophic question: What are the differences between a Table and a ListView? The only difference I can see until now is that it's possible to hide and show columns in a Table but not in a ListView. Are there any other difference