> 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 
> first time its holding the default values.

If you keep your forms in session scope, this might be a problem if the
user "starts over" with this form at some point.  If there's already an
instance of the form in session scope, it will be reused, so the
constructor will not be called.  So if you're going to do this, you
might want to remove the form from the session when the user is
"finished" with it, whatever that means in this particular app.  Then if
they "start over" the framework will make a new form.

-- 
Wendy Smoak
Application Systems Analyst, Sr.
ASU IA Information Resources Management 

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

Reply via email to