RE: multiple HTML form elements with the same name

2003-06-10 Thread Sashi Ravipati
o:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 8:35 AM To: [EMAIL PROTECTED] Subject: Re: multiple HTML form elements with the same name Can u post a working example, it will be of great help Thanks >>> [EMAIL PROTECTED] 06/06/03 05:01PM >>> Look at the struts docs regarding

RE: multiple HTML form elements with the same name

2003-06-09 Thread Sashi Ravipati
From: Sashi Ravipati [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 8:35 AM To: [EMAIL PROTECTED] Subject: Re: multiple HTML form elements with the same name Can u post a working example, it will be of great help Thanks >>> [EMAIL PROTECTED] 06/06/03 05:01PM >>> Look at t

RE: multiple HTML form elements with the same name

2003-06-09 Thread Bailey, Shane C.
se, read between the (dashed) lines (above). -Original Message- From: Sashi Ravipati [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2003 8:35 AM To: [EMAIL PROTECTED] Subject: Re: multiple HTML form elements with the same name Can u post a working example, it will be of great help Tha

Re: multiple HTML form elements with the same name

2003-06-09 Thread Sashi Ravipati
Can u post a working example, it will be of great help Thanks >>> [EMAIL PROTECTED] 06/06/03 05:01PM >>> Look at the struts docs regarding the index tag. Sashi Ravipati wrote: >How to use multiple HTML form elements with the same name. > >In the Help it is g

Re: multiple HTML form elements with the same name

2003-06-06 Thread Vic Cekvenich
Look at the struts docs regarding the index tag. Sashi Ravipati wrote: How to use multiple HTML form elements with the same name. In the Help it is given as Yes. Define the element as an array and Struts will autopopulate it like any other. private String[] id= {}; public String[] getId

multiple HTML form elements with the same name

2003-06-06 Thread Sashi Ravipati
How to use multiple HTML form elements with the same name. In the Help it is given as Yes. Define the element as an array and Struts will autopopulate it like any other. private String[] id= {}; public String[] getId() { return this.id; } public void setItem(String id[]) {this.id = id