Re: DynaActionForms Question

2005-02-22 Thread Eric Lemle
It's a map, you have to call get("name"); Eric D. Lemle Senior Programmer / Analyst Intermountain Health Care 36 South State Street, Suite 1100 Salt Lake City, Utah 84111 United States of America (USA) (801) 442-3688 -- e-mail: [EMAIL PROTECTED] >>> [EMAIL PROTECTED] 2/22/2005 1:38:02 PM >>> He

RE: DynaActionForms Question

2005-02-22 Thread Benedict, Paul C
DynaValidatorForm dynaForm = (DynaValidatorForm)form; String name = (String)dynaForm.get("name"); -Original Message- From: Scott Purcell [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 22, 2005 3:38 PM To: user@struts.apache.org Subject: DynaActionForms Question Hello,

RE: DynaActionForms Question

2005-02-22 Thread Joe Hertz
DynaActionForm df = (DynaActionForm) form; System.out.println(df.get("name")); -Original Message- From: Scott Purcell [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 22, 2005 3:38 PM To: user@struts.apache.org Subject: DynaActionForms Question Hello, I have a question a

RE: DynaActionForms Question

2005-02-22 Thread Joe Hertz
DynaActionForm df = (DynaActionForm) form; System.out.println(df.get("name")); -Original Message- From: Scott Purcell [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 22, 2005 3:38 PM To: user@struts.apache.org Subject: DynaActionForms Question Hello, I have a question a

DynaActionForms Question

2005-02-22 Thread Scott Purcell
Hello, I have a question about using DynaActionForm objects. I would like to use DynaActionForm class to keep maintenance simpler. But I do not know how to get the form values out in the action class? I have the following bean set up. Now in the action class w