One ActionForm One Action for Multiple different JSP

2001-09-04 Thread Xavier Brunel
hi all, I have a software design problem with Struts. I have to deal with an application where you fill a global form across several jsp's : I have to fill some fields in the first JSP, then press next, fill other fields, press next(or back), fill other fields, ... In each JSP, i can submit the

Re: One ActionForm One Action for Multiple different JSP

2001-09-04 Thread Ted Husted
On each request, Struts will call reset() and try to repopulate the bean from the current request. The default reset() does nothing. You need to be sure that your reset() method does not clear all the fields when you are using it to collect properties this way. One strategy is to set a flag,