Thanks  Sebastian

I was very close  just not familiar with alot of the objects yet


Another Question, i cannot seem to get anything in the latest version of renderer to work it comes up with alot of missing semi-colons errors when making, (won't work if i ignore these errors or fix them),

THe source version works but the compiled (public) will not, must be something obvious i am missing

Regards


Darryl


From: Sebastian Werner <[EMAIL PROTECTED]>
Reply-To: qooxdoo-devel@lists.sourceforge.net
To: qooxdoo-devel@lists.sourceforge.net
Subject: Re: [qooxdoo-devel] List VIew Question
Date: Fri, 16 Dec 2005 11:31:28 +0100

Darryl Pye schrieb:
Hi all

I am a bit stuck

i was tryng to return an array of data for a row in a list view when it is double clicked,

I can return the  whole list view but not  the row selected,
i have tried  using getPane
but cannot seem to get it to work.

I am using rendered branch

Any assistance would be aprreciated,

The doubleclick should be assigned on the "pane" which means you do something like:

myListView.getPane().addEventListener("dblclick", function(e) {
  this.getManager().getSelectedItems()
  // or
  this.getManager().getSelectedItem()
});

This will give you the current selection then. If you want the dom target of the event, what is imho not really helpful you can do this in your event listener:

alert(e.getDomTarget());

Sebastian


Regards,
Darryl

_________________________________________________________________
Start something musical - 15 free ninemsn Music downloads! http://ninemsn.com.au/share/redir/adTrack.asp?mode=click&clientID=667&referral=HotmailTaglineNov&URL=http://www.ninemsn.com.au/startsomething




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Qooxdoo-devel mailing list
Qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Qooxdoo-devel mailing list
Qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

_________________________________________________________________
Click here for local singles to date today http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D21308&_t=21308&_m=EXT



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Qooxdoo-devel mailing list
Qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to