[qooxdoo-devel] Virtual List Scrolling methods.

2015-07-07 Thread Phyo Arkar
Qooxdoo virtual have: list.scrolltoY() list.getPane.setScrollY() list.getChildControl('scrollbar-Y').setPosition() list.getChildControl('scrollbar-Y').scrollTo() What are the differences? When i scroll my custom virtual-list with getPane.setScrollY() it sometimes goes white blank. Without any i

Re: [qooxdoo-devel] Virtual List and Data Paging Question

2011-09-29 Thread Simon White
Hi I just added my comments to one of the enhancement requests. Simon On 29/09/2011 2:51 AM, Alexander Steitz wrote: > Hi Simon, > > On Wednesday 28 September 2011 17:59:09 Simon White wrote: >> I understand that the virtual list can handle a large number of model >> items but I am wondering abo

Re: [qooxdoo-devel] Virtual List and Data Paging Question

2011-09-28 Thread Alexander Steitz
Hi Simon, On Wednesday 28 September 2011 17:59:09 Simon White wrote: > I understand that the virtual list can handle a large number of model > items but I am wondering about situations where you might have thousands > or millions of items in a database. I would think that you would not > want

[qooxdoo-devel] Virtual List and Data Paging Question

2011-09-28 Thread Simon White
Hi I understand that the virtual list can handle a large number of model items but I am wondering about situations where you might have thousands or millions of items in a database. I would think that you would not want to load your model with the entire database table but would want some way

[qooxdoo-devel] Virtual List/Table Enhancement

2011-09-26 Thread Simon White
Hi I would like to suggest a buffer be added to the list and table widgets which would contain the currently selected item in the model. It would be updated on every selection change. This would allow the detection of changes made to the currently selected model item by data bound widgets.

Re: [qooxdoo-devel] Virtual list selection handling

2011-04-08 Thread Martijn Evers
Done: #4979 Op 08-04-11 17:04, Christian Hagendorn schreef: Am 08.04.2011 16:09, schrieb Martijn Evers: Hi, I use the virtual list (qx.ui.list.List). When I remove some items from the model they stay in the selection. This can lead to unexpected behaviour. This also applies when replacing th

Re: [qooxdoo-devel] Virtual list selection handling

2011-04-08 Thread Christian Hagendorn
Am 08.04.2011 16:09, schrieb Martijn Evers: Hi, I use the virtual list (qx.ui.list.List). When I remove some items from the model they stay in the selection. This can lead to unexpected behaviour. This also applies when replacing the model. I would expect the selection to follow the model. Se

[qooxdoo-devel] Virtual list selection handling

2011-04-08 Thread Martijn Evers
Hi, I use the virtual list (qx.ui.list.List). When I remove some items from the model they stay in the selection. This can lead to unexpected behaviour. This also applies when replacing the model. I would expect the selection to follow the model. See this playground example: http://tinyurl.co

Re: [qooxdoo-devel] Virtual list: trigger refresh

2011-04-06 Thread Marc Puts
Done: #4967 On 04/06/2011 02:11 PM, Christian Hagendorn wrote: > Hi Marc, > > you are right, there is no way to force a refresh with a method. At the > moment you can only force the refresh by resetting the delegate. Could > you please open a bug report as an enhancement bug? > > Thanks, > Chris >

Re: [qooxdoo-devel] Virtual list: trigger refresh

2011-04-06 Thread Christian Hagendorn
Hi Marc, you are right, there is no way to force a refresh with a method. At the moment you can only force the refresh by resetting the delegate. Could you please open a bug report as an enhancement bug? Thanks, Chris Am 06.04.2011 13:52, schrieb Marc Puts: > Hi, > > I'm using the virtual list

[qooxdoo-devel] Virtual list: trigger refresh

2011-04-06 Thread Marc Puts
Hi, I'm using the virtual list with a filter delegate. The filter uses a variable that external to the delegate. When that variable changes, the same delegate might return different results, so the list should re-evaluate the filter. Here's a playground example of my question: http://tinyurl.

Re: [qooxdoo-devel] virtual List implementation in demobrowser

2010-11-18 Thread aditya siram
Awesome. Thank you! -deech On Thu, Nov 18, 2010 at 4:10 AM, Daniel Wagner wrote: > Hi deech, > > you should use the new virtual list, qx.ui.list.List. > demobrowser.demo.virtual.list.List is sort of a proof of concept for the > ideas that went into ui.list.List. We decided to keep it around for >

Re: [qooxdoo-devel] virtual List implementation in demobrowser

2010-11-18 Thread Daniel Wagner
Hi deech, you should use the new virtual list, qx.ui.list.List. demobrowser.demo.virtual.list.List is sort of a proof of concept for the ideas that went into ui.list.List. We decided to keep it around for reference until the "real" virtual list is finalized. Just be aware that the virtual list

[qooxdoo-devel] virtual List implementation in demobrowser

2010-11-17 Thread aditya siram
Hi all, I have search-as-you-type text field implemented using a regular qx.ui.form.List but it chokes on large datasets (< 2 items). It seems as though the virtual list implementation demobrowser.demo.virtual.list.List is built for this kind of thing and I want to lift it into my own code. Doe

Re: [qooxdoo-devel] virtual list

2010-09-02 Thread Christian Hagendorn
Hi Greg, at the moment we have two virtual list implementations: 1) qx.ui.virtual.form.List 2) qx.ui.list.List 1) will not be continued and will be removed in the future. 2) is still under development, the current implementation miss some features, so the API will definitely changed. But

[qooxdoo-devel] virtual list

2010-09-01 Thread Greg Beaver
Hi, Are there any demo examples of the experimental virtual list using the virtual listitem cell renderer? Additionally, how experimental is the API at this point? For further information, I'm toying with converting the frontend of an open source issue tracker into a qooxdoo app, and would need