Re: Getting list of values from checkboxes

2006-03-30 Thread Dan Jas
dMembBadge () and iterates through it to get the values. Dan - Original Message - From: "Gary Feidt" <[EMAIL PROTECTED]> To: Sent: Thursday, March 30, 2006 11:15 AM Subject: Re: Getting list of values from checkboxes I had used a javascript function to gather all the c

Re: Getting list of values from checkboxes

2006-03-30 Thread Gary Feidt
I had used a javascript function to gather all the checked checkbox ids on the Form into a pipe delimited string and saved that in a hidden field. And then pulled that apart in the Action to deside which ones I needed to delete. It worked for me. Gary chuanjiang lo wrote: > Hi all, > > I have t

Re: Getting list of values from checkboxes

2006-03-30 Thread Bharathi Kattamuri
It is trivial with multibox. below examples is an example of usage. name="acontact" property="id"/> where contIds is defined as Interger[] in a DynaActionForm. more details you can found here. http://husted.com/struts/tips/007.html Hope it is useful Bharathi chuanjiang lo wrote: Hi all, I