Re: [qooxdoo-devel] Get listview data os selected item

2007-05-07 Thread Jonis Maurin Ceara
Alex Back wrote: > Hello Jonis, > > to tackle the problem down could you please send my the code which is not > working? > > Thanks, > Alex You e-mail doesn't exist :( do u have msn? jonis AT jonis DOT com DOT br - T

Re: [qooxdoo-devel] Get listview data os selected item

2007-05-07 Thread Jonis Maurin Ceara
Alex Back wrote: > Hello Jonis, > > to tackle the problem down could you please send my the code which is not > working? > > Thanks, > Alex Sure! - This SF.net email is sponsored by DB2 Express Download DB2 Express C -

Re: [qooxdoo-devel] Get listview data os selected item

2007-05-07 Thread Alex Back
Hello Jonis, to tackle the problem down could you please send my the code which is not working? Thanks, Alex On Monday 07 May 2007 Jonis Maurin Ceara wrote: > Alex Back wrote: > > Hello Jonis, > > > > I didn't manage to reproduce your problem. > > > > However it seems to be that you try to se

Re: [qooxdoo-devel] Get listview data os selected item

2007-05-07 Thread Jonis Maurin Ceara
Alex Back wrote: > Hello Jonis, > > I didn't manage to reproduce your problem. > > However it seems to be that you try to set a padding in your code. What > version of qooxdoo do you use? In versions prior to 0.7 the padding property > group is not supported. You have to set paddingTop, paddin

Re: [qooxdoo-devel] Get listview data os selected item

2007-05-07 Thread Alex Back
Hello Jonis, I didn't manage to reproduce your problem. However it seems to be that you try to set a padding in your code. What version of qooxdoo do you use? In versions prior to 0.7 the padding property group is not supported. You have to set paddingTop, paddingBottom, paddingLeft and paddi

Re: [qooxdoo-devel] Get listview data os selected item

2007-05-07 Thread Jonis Maurin Ceara
Thank you, it's working fine now! And also, VERY thank for the hint! :D But...i'm having another problem. I'm trying to add a second ListView on my application with this code: var re = new qx.ui.groupbox.GroupBox(); re.set({ height:"66%", width:"100%" }); main.add(re);

Re: [qooxdoo-devel] Get listview data os selected item

2007-05-07 Thread Peter Schneider
Hi "you", please take a look at the attachment I've added to a former thread called "ListView help". Date was: 2007-05-04. Maybe you'll find something that helps n there. Although that version did not use the "dblclick" event. /Peter > Hi. > > How can i get data from selected item on listview (

Re: [qooxdoo-devel] Get listview data os selected item

2007-05-07 Thread Alex Back
Hello Jonis, On Saturday 05 May 2007 Jonis wrote: > Hi. > > How can i get data from selected item on listview (first colum)? > > i have this code: > > lv.getPane().addEventListener("dblclick", function(e) { > //this.getManager().getSelectedItems() > // or >

[qooxdoo-devel] Get listview data os selected item

2007-05-04 Thread Jonis
Hi. How can i get data from selected item on listview (first colum)? i have this code: lv.getPane().addEventListener("dblclick", function(e) { //this.getManager().getSelectedItems() // or alert(this.getManager().getSelectedItem()); }); I ca