My code is as following...
struts-config.xml

<form-beans>
        <form-bean name="DynaLoginForm"
type="org.apache.struts.validator.DynaValidatorForm">
            <form-property name="username" type="java.lang.String"/>
            <form-property name="password" type="java.lang.String"/>
        </form-bean>

-----Original Message-----
From: David Durham, Jr. [mailto:[EMAIL PROTECTED] 
Sent: Saturday, June 09, 2007 2:46 AM
To: Struts Users Mailing List
Subject: Re: Extending DynaValidatorForm

On 6/8/07, David Durham, Jr. <[EMAIL PROTECTED]> wrote:
> On 6/8/07, Ambaris Mohanty <[EMAIL PROTECTED]> wrote:
> > Please someone send me the sample code for extending DynaValidatorForm
and
> > implementing the reset method. I have no idea on how to do it. Please
help.
> > I'm using struts 1.2.9.
> > Thank you,
>
>
> HTML has the concept of a reset button:
>
>    http://www.w3.org/TR/html401/interact/forms.html#reset-button
>
> ...

Hmm, guess you were asking about extending DynaValidatorForm.  I must
have been thinking of some other question that was similar to this
one.  Anyway, a DynaValidatorForm is a DynaBean, so you can call
set("propertyName", "reset Value") from your reset override method.
These API versions aren't exact, but I don't think these classes have
changed much:

http://struts.apache.org/1.3.8/apidocs/org/apache/struts/validator/DynaValid
atorForm.html
http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.6.1/docs/api
/org/apache/commons/beanutils/DynaBean.html

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to