View Single Post
  #3 (permalink)  
Old 07-25-2008, 05:02 AM
subedimadhav@yahoo.c
 
Posts: n/a
Diggs:
Default Re: mx:list to comma delimited list

you can use
list.selectedItems.join(",");

if you want to insert the selected items into database, i don't think making a
comma delimited string is appropriate, you might have thought to parse this
string in the server side again, but you can pass the list itself to a server
script.

Reply With Quote