[qooxdoo-devel] Listview Selection issue

2007-11-06 Thread Philipp Wabinski
Hello, a user of my application told that he has a problem with the selection insight some listviews. When clicks onto the first item the third is selected and so on. He tested it with firefox in version 2.0.0.9 and 2.0.0.8. I also tested it in both versions and it works fine for me. Has someb

Re: [qooxdoo-devel] ListView selection

2006-07-05 Thread sharmaprateek
Dont be sorry.. that code was of good help to me! :-) No piece of info goes vain :D.. thanks! -- View this message in context: http://www.nabble.com/ListView-selection-tf1258230.html#a5184412 Sent from the qooxdoo-devel forum at Nabble.com. Using Tomcat but need to do more? Need to support we

Re: [qooxdoo-devel] ListView selection

2006-03-10 Thread zoid
Well I figured a workaround for my needs. The following code works, but I am not sure how safe it is. data[i]._selected = true; listview.getPane().getManager()._selectedItems.add(data[i]); where 'data' is the data array for the listview. -- View this message in context: http://www.nabble.com/L

Re: [qooxdoo-devel] ListView selection

2006-03-10 Thread Ricardo Borillo
You are right. Sorry :(On 3/10/06, Priebe, Jason <[EMAIL PROTECTED]> wrote: > On 3/10/06, zoid <[EMAIL PROTECTED]> wrote:> > I am having a problem in setting an item in a ListView to> the selected> > state. > > Can anyone help ?Ricardo Borillo wrote:> You can use:>> lv.getPane().getManager().addEve

RE: [qooxdoo-devel] ListView selection

2006-03-10 Thread Priebe, Jason
> On 3/10/06, zoid <[EMAIL PROTECTED]> wrote: > > I am having a problem in setting an item in a ListView to > the selected > > state. > > Can anyone help ? Ricardo Borillo wrote: > You can use: > > lv.getPane().getManager().addEventListener("changeSelection", > function(e) { >... > }); I

Re: [qooxdoo-devel] ListView selection

2006-03-10 Thread Ricardo Borillo
Hi!!You can use:lv.getPane().getManager().addEventListener("changeSelection", function(e) {   ...});On 3/10/06, zoid <[EMAIL PROTECTED]> wrote: I am having a problem in setting an item in a ListView to the selected state.Can anyone help ?--View this message in context: http://www.nabble.com/ListVi

[qooxdoo-devel] ListView selection

2006-03-10 Thread zoid
I am having a problem in setting an item in a ListView to the selected state. Can anyone help ? -- View this message in context: http://www.nabble.com/ListView-selection-t1258230.html#a3336829 Sent from the qooxdoo-devel forum at Nabble.com.

Re: [qooxdoo-devel] listview selection

2006-02-24 Thread Sebastian Werner
Yue schrieb: Hi, Could anyone tell me how to catch the listview selection change event? There is a getManager method in QxTree, which returns a selection manager. But there appears to be no such method in QxListView. Neither example nor test shows how to catch the event. The manager is in

Re: [qooxdoo-devel] listview selection

2006-02-24 Thread Yue
Ah I just got the answer myself. It's QxListView.getPane().getManager() that returns the selection manager the method QxTree.getmanager() returns. >Hi, > >Could anyone tell me how to catch the listview selection change event? > >There is a getManager method in QxTree, which returns a selectio

[qooxdoo-devel] listview selection

2006-02-24 Thread Yue
Hi, Could anyone tell me how to catch the listview selection change event? There is a getManager method in QxTree, which returns a selection manager. But there appears to be no such method in QxListView. Neither example nor test shows how to catch the event. Regards, Yue ---