Re: Multi-select list

2009-01-22 Thread Peter Stavrinides
you would need to use some JavaScript, something like this:

var selected = new Array(); 
for (var i = 0; i  ob.options.length; i++) 
  if (ob.options[i].selected) 
selected.push(ob.options[i].value);

The palette gives you this list already though... so I still can't see what the 
benefit is in avoiding two lists, its a lot more trouble using a select.

Peter


 
- Original Message -
From: ligboo lig...@gmail.com
To: users@tapestry.apache.org
Sent: Monday, 29 December, 2008 23:25:10 GMT +02:00 Athens, Beirut, Bucharest, 
Istanbul
Subject: Re: Multi-select list


dumb question:  how do you get the selected elements out of the t:select
multiple=true component??


Peter Stavrinides wrote:
 
 Okay, that wasn't clear from your initial question, well you could still
 use the informal parameter multiple=true on an t:select / and that
 should work, but unfortunately then you wont have the option of a
 java.util.list like you do with the pallet.
 
 
 - Original Message -
 From: rs1050 rs1...@gmail.com
 To: users@tapestry.apache.org
 Sent: Monday, 17 November, 2008 2:16:47 PM GMT +02:00 Athens, Beirut,
 Bucharest, Istanbul
 Subject: Re: Multi-select list
 
 
 I saw palette, but I would like to have just one list from which users can
 highlight several rows - not have to move them around from 'available' to
 'selected' (which requires two lists)
 
 Thank you.
 Roman.
 -- 
 View this message in context:
 http://www.nabble.com/Multi-select-list-tp20533280p20538365.html
 Sent from the Tapestry - User mailing list archive at Nabble.com.
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
 For additional commands, e-mail: users-h...@tapestry.apache.org
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
 For additional commands, e-mail: users-h...@tapestry.apache.org
 
 
 

-- 
View this message in context: 
http://n2.nabble.com/Multi-select-list-tp1508013p2090366.html
Sent from the Tapestry Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Multi-select list

2008-12-29 Thread ligboo

dumb question:  how do you get the selected elements out of the t:select
multiple=true component??


Peter Stavrinides wrote:
 
 Okay, that wasn't clear from your initial question, well you could still
 use the informal parameter multiple=true on an t:select / and that
 should work, but unfortunately then you wont have the option of a
 java.util.list like you do with the pallet.
 
 
 - Original Message -
 From: rs1050 rs1...@gmail.com
 To: users@tapestry.apache.org
 Sent: Monday, 17 November, 2008 2:16:47 PM GMT +02:00 Athens, Beirut,
 Bucharest, Istanbul
 Subject: Re: Multi-select list
 
 
 I saw palette, but I would like to have just one list from which users can
 highlight several rows - not have to move them around from 'available' to
 'selected' (which requires two lists)
 
 Thank you.
 Roman.
 -- 
 View this message in context:
 http://www.nabble.com/Multi-select-list-tp20533280p20538365.html
 Sent from the Tapestry - User mailing list archive at Nabble.com.
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
 For additional commands, e-mail: users-h...@tapestry.apache.org
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
 For additional commands, e-mail: users-h...@tapestry.apache.org
 
 
 

-- 
View this message in context: 
http://n2.nabble.com/Multi-select-list-tp1508013p2090366.html
Sent from the Tapestry Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Multi-select list

2008-11-17 Thread Peter Stavrinides
The component was named palette, which is probably the reason you can't find it:

http://tapestry.apache.org/tapestry5/tapestry-core/ref/org/apache/tapestry5/corelib/components/Palette.html

cheers,
Peter

- Original Message -
From: rs1050 [EMAIL PROTECTED]
To: users@tapestry.apache.org
Sent: Monday, 17 November, 2008 5:27:31 AM GMT +02:00 Athens, Beirut, 
Bucharest, Istanbul
Subject: Multi-select list


Hi,

I could not find multi-select list in the list of T5 components. Appreciate
if you can point me to right place of how to use/get it.

Thank you.
Roman.
-- 
View this message in context: 
http://www.nabble.com/Multi-select-list-tp20533280p20533280.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Multi-select list

2008-11-17 Thread rs1050

I saw palette, but I would like to have just one list from which users can
highlight several rows - not have to move them around from 'available' to
'selected' (which requires two lists)

Thank you.
Roman.
-- 
View this message in context: 
http://www.nabble.com/Multi-select-list-tp20533280p20538365.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Multi-select list

2008-11-17 Thread Peter Stavrinides
Okay, that wasn't clear from your initial question, well you could still use 
the informal parameter multiple=true on an t:select / and that should work, 
but unfortunately then you wont have the option of a java.util.list like you do 
with the pallet.


- Original Message -
From: rs1050 [EMAIL PROTECTED]
To: users@tapestry.apache.org
Sent: Monday, 17 November, 2008 2:16:47 PM GMT +02:00 Athens, Beirut, 
Bucharest, Istanbul
Subject: Re: Multi-select list


I saw palette, but I would like to have just one list from which users can
highlight several rows - not have to move them around from 'available' to
'selected' (which requires two lists)

Thank you.
Roman.
-- 
View this message in context: 
http://www.nabble.com/Multi-select-list-tp20533280p20538365.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Multi-select list

2008-11-16 Thread rs1050

Hi,

I could not find multi-select list in the list of T5 components. Appreciate
if you can point me to right place of how to use/get it.

Thank you.
Roman.
-- 
View this message in context: 
http://www.nabble.com/Multi-select-list-tp20533280p20533280.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]