RE: Sharing Fields Between 2 Forms

2004-07-22 Thread Wiebe de Jong
-Original Message- From: Ciaran Hanley [mailto:[EMAIL PROTECTED] Sent: Thursday, July 22, 2004 10:12 AM To: Struts User Mailing List Subject: Sharing Fields Between 2 Forms Hello, Is it possible for forms to share a common field? I have two forms on a page which both need to gather data from a

Re: Sharing Fields Between 2 Forms

2004-07-22 Thread atta-ur rehman
hi, yes it's possible if both the form classes are inherited from the same base class that has the common field getter/setter defined in it. but why not have the same field in the both the forms? won't it be easier? ATTA On Thu, 22 Jul 2004 18:11:31 +0100, Ciaran Hanley <[EMAIL PROTECTED]> wrot

RE: Sharing Fields Between 2 Forms

2004-07-22 Thread Jim Barrows
> -Original Message- > From: Ciaran Hanley [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 22, 2004 10:12 AM > To: Struts User Mailing List > Subject: Sharing Fields Between 2 Forms > > > Hello, > > > > Is it possible for forms to share a commo

Sharing Fields Between 2 Forms

2004-07-22 Thread Ciaran Hanley
Hello, Is it possible for forms to share a common field? I have two forms on a page which both need to gather data from a html:textarea. I do not want to have two textareas on the JSP however so I can I share one between both forms? Thanks, CH