extending Struts taglibs to indicate form field states

2003-07-31 Thread Witbeck, Shane
Im considering extending the Struts taglibs (specfically the form object tags). What Im thinking about doing is adding a formStateObject to my ActionForm beans and having it dictate the state of specifc elements of a form. For example, if a particular field should be disabled, then I would add

Re: extending Struts taglibs to indicate form field states

2003-07-31 Thread Yann Cébron
Im considering extending the Struts taglibs (specfically the form object tags). What Im thinking about doing is adding a formStateObject to my ActionForm beans and having it dictate the state of specifc elements of a form. For example, if a particular field should be disabled, then I would

RE: extending Struts taglibs to indicate form field states

2003-07-31 Thread Mike Jasnowski
for required, or error conditions, etc.. -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Yann Cébron Sent: Thursday, July 31, 2003 1:33 PM To: [EMAIL PROTECTED] Subject: Re: extending Struts taglibs to indicate form field states Im considering extending the Struts

RE: extending Struts taglibs to indicate form field states

2003-07-31 Thread Mike Jasnowski
Mailing List Subject: RE: extending Struts taglibs to indicate form field states We use a mechanism that basically wraps a set of Struts Form/Form Fields in a tag that applies a set of XSLT templates to the body of the tag. This enables use to add features like you describe w/o touching

Re: extending Struts taglibs to indicate form field states

2003-07-31 Thread Rob Leland
Mike Jasnowski wrote: We use a mechanism that basically wraps a set of Struts Form/Form Fields in a tag that applies a set of XSLT templates to the body of the tag. This enables use to add features like you describe w/o touching the Struts tags themselves. We use it for custom error

RE: extending Struts taglibs to indicate form field states

2003-07-31 Thread Steve Caswell
Any chance of you posting an example? This sounds like a solution to a requirement I have. -Original Message- From: Rob Leland [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 2:37 PM To: Struts Users Mailing List Subject: Re: extending Struts taglibs to indicate form field states