Re: Dynamically Generated html:Text

2006-09-18 Thread Aftab Vhora
Hi, Somehow I was able to generate text boxes dynamically here is wht i did ==struts-config.xml=== type="org.apache.struts.action.DynaActionForm" size="4"> scope="request"> Action Form myMapForm.java pub

Re: Dynamically Generated html:Text

2006-09-18 Thread Puneet Lakhina
On 9/18/06, Aftab Vhora <[EMAIL PROTECTED]> wrote: Hi, I m dynamically generating the html:text , i have made correct entry in the struts config.xml and also implemented the Action Form and Action class. But I m getting below error, request you to kindly provide me the solution. ===ER

Re: Dynamically Generated html:Text

2006-09-18 Thread Monkeyden
It's not finding the ActionForm. It looks like you need a slash before "process" in the form tag, provided that you indeed have an action mapping with path "/process" in your Struts config file. On 9/18/06, Aftab Vhora <[EMAIL PROTECTED]> wrote: Hi, I m dynamically generating the html:text ,

RE: R: Dynamically Generated html:Text

2006-09-18 Thread Lance
Try -Original Message- From: Marcello Savino [mailto:[EMAIL PROTECTED] Sent: 18 September 2006 13:29 To: Struts Users Mailing List Subject: R: R: Dynamically Generated html:Text Something like that: public class myMapForm extends ActionForm { public void setTxt(int index

R: R: Dynamically Generated html:Text

2006-09-18 Thread Marcello Savino
s Mailing List Oggetto: Re: R: Dynamically Generated html:Text Hi Savino, Thanks for the reply. Could u please provide me an example my test.jsp using indexed properties. Thanks & Regards, Aftab Vhora Marcello Savino wrote: >1) You have some kind of getter and setter for txt prope

Re: R: Dynamically Generated html:Text

2006-09-18 Thread Aftab Vhora
look for indexed properties -Messaggio originale- Da: Aftab Vhora [mailto:[EMAIL PROTECTED] Inviato: lunedì 18 settembre 2006 12.06 A: Struts Users Mailing List Oggetto: Dynamically Generated html:Text Hi, I m dynamically generating the html:text , i have made correct entry in the struts c

R: Dynamically Generated html:Text

2006-09-18 Thread Marcello Savino
getto: Dynamically Generated html:Text Hi, I m dynamically generating the html:text , i have made correct entry in the struts config.xml and also implemented the Action Form and Action class. But I m getting below error, request you to kindly provide me the solution. ===

Dynamically Generated html:Text

2006-09-18 Thread Aftab Vhora
Hi, I m dynamically generating the html:text , i have made correct entry in the struts config.xml and also implemented the Action Form and Action class. But I m getting below error, request you to kindly provide me the solution. ===ERROR javax.servlet.jsp.JspException: N

Re: Struts with dynamically generated html:Text

2006-09-15 Thread Puneet Lakhina
On 9/15/06, Aftab Vhora <[EMAIL PROTECTED]> wrote: Hi, In my page I am generating text boxes dynamically(i.e. clicking on a button "Add more" will add a text box in my page.) Now I want to implement my ActionForm to capture the data entered in those dynamically generated text boxes. Is it poss

Struts with dynamically generated html:Text

2006-09-14 Thread Aftab Vhora
Hi, In my page I am generating text boxes dynamically(i.e. clicking on a button "Add more" will add a text box in my page.) Now I want to implement my ActionForm to capture the data entered in those dynamically generated text boxes. Is it possible in struts ? If yes, please provide me the so