2003. január 24. 10:54 dátummal ROSSEL Olivier ezt írtad:
> I said that SOMETIMES it is very annoying.

You have the request and the mapping in the request, so you can decide on each 
reset() written by you that you want it happen or not. 

I had only one form for which I didn't need the reset sometimes. So I did the 
following: 

public void reset(...) {
        if (request.getParamter("noreset") != null) {
                return;
        }
        // normal reset functionality comes here.
}

If this is not sophisticated enogh for you then you can get some parameter 
from the mapping via custom classes and set-property tags in 
struts-config.xml

Tib

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

Reply via email to