Re: Multibox problem when defaulted all on

2004-03-17 Thread David Erickson
be populated, and if there are none, it will stay at none. -David > > Wiebe > > -Original Message- > From: David Erickson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 17, 2004 12:28 PM > To: Struts Users Mailing List > Subject: Re: Multibox problem when

RE: Multibox problem when defaulted all on

2004-03-17 Thread Wiebe de Jong
Wednesday, March 17, 2004 12:28 PM To: Struts Users Mailing List Subject: Re: Multibox problem when defaulted all on Actually according to Ted inside the reset method your code should be: marketing = new String[] {}; HTH, David - Original Message - From: "David Erickson"

RE: Multibox problem when defaulted all on

2004-03-17 Thread Wendy Smoak
> From: David Erickson [mailto:[EMAIL PROTECTED] > I'm still a little hazy on when reset is called on forms, Right before they get populated from the values in the request. > but you may want to try moving > marketing = marketingItems; > to the forms constructor, so when the form is created the

Re: Multibox problem when defaulted all on

2004-03-17 Thread David Erickson
rch 17, 2004 1:22 PM Subject: Re: Multibox problem when defaulted all on > I'm still a little hazy on when reset is called on forms, but you may want > to try moving > marketing = marketingItems; > > to the forms constructor, so when the form is created the first time its > ho

Re: Multibox problem when defaulted all on

2004-03-17 Thread David Erickson
I'm still a little hazy on when reset is called on forms, but you may want to try moving marketing = marketingItems; to the forms constructor, so when the form is created the first time its holding the default values. And inside the reset method: marketing = null; -David - Original Message