RE: Wizard pages in Struts design question

2003-09-21 Thread Erez Efrati
age- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Sunday, September 21, 2003 5:00 PM To: Struts Users Mailing List Subject: Re: Wizard pages in Struts design question To prevent repopulation of an ActionForm's properties, you just need to provide a property that observes that status of an

RE: Wizard pages in Struts design question

2003-09-21 Thread Erez Efrati
ids the famous Struts action chaining issue. Erez -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Sunday, September 21, 2003 5:00 PM To: Struts Users Mailing List Subject: Re: Wizard pages in Struts design question To prevent repopulation of an ActionForm's pr

Re: Wizard pages in Struts design question

2003-09-21 Thread Ted Husted
To prevent repopulation of an ActionForm's properties, you just need to provide a property that observes that status of another property that indicates whether the form is readonly or not. So, instead of just doing this.property = property you have if (mutable) this.property = property Or do