populate form using parameters instead of form

2001-09-16 Thread Brian K. Buckley
Hello, I have a working MyForm subclass ActionForm. Elsewhere in my application, I'd like to use the same MyForm but populate it using the parameters in the httpquest (the querystring), so that a user can click on a link (setup with the appropriate querystring) to submit data. To get this

Re: populate form using parameters instead of form

2001-09-16 Thread Erik Hatcher
: Brian K. Buckley [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 16, 2001 4:52 PM Subject: populate form using parameters instead of form Hello, I have a working MyForm subclass ActionForm. Elsewhere in my application, I'd like to use the same MyForm but populate it using

Re: populate form using parameters instead of form

2001-09-16 Thread Brian K. Buckley
Thanks Eric, Just asking those question make me study things harder and I got it working. Amongst other things, I was omitting the input attribute necessary to tell struts where to go if there are errors. action path=/linktest name=myForm scope=request type=myAction