Re: How to get dynamic number of arguments into ActionForm

2008-05-05 Thread maestro
I accomplished this without using the DynaActionForm. Its somewhat a crude way but it works. When stuck with constraints what is one to do? Here is an example, in the JSP I have coded the form element: Once rendered in the HTML: In the form bean: private List beneficiaries = new ArrayList();

Re: How to get dynamic number of arguments into ActionForm

2008-05-05 Thread venkat reddy
, the list can be retieved from an action. > > > http://struts.apache.org/2.0.6/struts2-core/apidocs/org/apache/struts2/components/Autocompleter.html > - Original Message ----- From: "Mead Lai" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" >

Re: How to get dynamic number of arguments into ActionForm

2008-05-04 Thread Martin Gainty
s/Autocompleter.html - Original Message - From: "Mead Lai" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Sunday, May 04, 2008 8:43 PM Subject: Re: How to get dynamic number of arguments into ActionForm List type On Sun, May 4, 2008 at 7:51 PM, venkat reddy

Re: How to get dynamic number of arguments into ActionForm

2008-05-04 Thread Mead Lai
List type On Sun, May 4, 2008 at 7:51 PM, venkat reddy <[EMAIL PROTECTED]> wrote: > I'm using struts 1.2.7 > > I've a poll-posting-form in adminstrator section of my application. format > of the form is as follows. > > pollsubject: String > lastDate:String > choice1:String > choice2:String >