Re: Losing changed form value

2005-01-28 Thread Christopher Loschen
again! Chris From: Kishore Senji [EMAIL PROTECTED] Reply-To: Kishore Senji [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Subject: Re: Losing changed form value In-Reply-To: [EMAIL PROTECTED] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer

Re: Losing changed form value

2005-01-27 Thread Christopher Loschen
Thanks for your advice! I've checked the ActionMappings and they all mention the request scope: action path=/profile/personal_profile type=com.xxx.users.actions.GetCurrentUserProfileAction scope=request name=userProfileForm validate=false parameter=.main.profile.personalProfile/action ... !--

Re: Losing changed form value

2005-01-27 Thread Kishore Senji
On Thu, 27 Jan 2005 11:40:45 -0500, Christopher Loschen [EMAIL PROTECTED] wrote: Thanks for your advice! I've checked the ActionMappings and they all mention the request scope: action path=/profile/personal_profile type=com.xxx.users.actions.GetCurrentUserProfileAction scope=request

Losing changed form value

2005-01-26 Thread Christopher Loschen
Hi all, Sorry if this appears twice -- my last attempt hasn't made it after an hour, so I'm trying again. I'm working with a form called UserProfileForm which includes a property called email. I'm starting from a User Profile screen which displays the email address and offers a link to edit it.

Re: Losing changed form value

2005-01-26 Thread William Stranathan
Can't promise this, but make SURE your Action Mappings specifically define the scope of your form bean. My HUNCH is that the one that displays the first time is in session scope, but your submit action is defining one in request scope. w Christopher Loschen wrote: Hi all, The action classes