Re: dynamic input fields

2004-01-03 Thread Mark Lowe
What does your action form look like? The jsp should look something like this logic:iterate id=lotes name=meusLotes html:text name=lotes property=valor indexed=true / /logic:iterate Cheers Mark On 3 Jan 2004, at 03:22, Otávio Augusto wrote: I need to generate html:text fields on demand. If i

dynamic input fields

2004-01-02 Thread Otávio Augusto
I need to generate html:text fields on demand. If i have N elements in a certain collection, i need one html:text field for every one of the elements in that collection. how to perform that? I'm using the code: bean:define id=meusLotes name=venda property=meusLotes / logic:iterate id=lotes

Re: dynamic input fields

2002-02-26 Thread David M. Karr
Michael == Michael Press Press writes: Michael == Michael Press Press writes: I could be mistaken, but isn't this basically what the recently added Dynamic Action Form does? Michael What's the recently added Dynamic Action Form !? Look in the nightly build documentation for

RE: dynamic input fields

2002-02-25 Thread Press, Michael
] Subject: Re: dynamic input fields Michael == Michael Press Press writes: Michael I just did this. I based my solution on the Dynamic Properties solution by Michael Kevin Wang Michael (http://www.mail-archive.com/struts-user@jakarta.apache.org/msg01374.html), Michael but I needed

Re: dynamic input fields

2002-02-24 Thread David M. Karr
Michael == Michael Press Press writes: Michael I just did this. I based my solution on the Dynamic Properties solution by Michael Kevin Wang Michael (http://www.mail-archive.com/struts-user@jakarta.apache.org/msg01374.html), Michael but I needed to do it without

dynamic input fields

2002-02-21 Thread Dua, Amit
Hi I have a view(a jsp) which gets its Input fields Dynamically. The number of input field is not constant. how can I create Action form in this scenerio. Thanks Amit -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

dynamic input fields

2002-02-21 Thread Dua, Amit
Hi I have a view(a jsp) which gets its Input fields Dynamically. The number of input field is not constant. how can I create Action form in this scenerio. Thanks Amit -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: dynamic input fields

2002-02-21 Thread Press, Michael
I just did this. I based my solution on the Dynamic Properties solution by Kevin Wang (http://www.mail-archive.com/struts-user@jakarta.apache.org/msg01374.html), but I needed to do it without modifying/extending Struts itself. I created a BaseActionForm that my ActionForms extend. The Base