Re: Losing request attributes after validate()

2005-05-08 Thread David Johnson
Right. What I want is to pre-populate text fields if the user id editing or set it to if the user is creating a new thing. I think what I'll settle on is making the portfolioName request attribute a session attribute instead, then in the Save() methos, execute a myForm.reset() Is that fairly

Re: Losing request attributes after validate()

2005-05-08 Thread Michael Jouravlev
It seems that what you want to do is typical. I suggest you to take a different approach, a model-based approach. Consider this: you want to create or modify an _object_, not just some form fields. So, your form should pull the data from an object and show it. It should not matter for the form,

Losing request attributes after validate()

2005-05-06 Thread David Johnson
Hi all I apprear to be losing my request parameters after a form submit that fails in the Validate() of my Form. Has anyone seen this before? It works fine in all the other areas of the application, it's just this one page. the result is when I come back t the page all the data is blank as if

Re: Losing request attributes after validate()

2005-05-06 Thread Michael Jouravlev
Do you redirect to your form, and your form bean has request scope? Or do you just click Back browser button, and your pages are marked as non-cachable or browser is instructed not to cache field values? On 5/6/05, David Johnson [EMAIL PROTECTED] wrote: Hi all I apprear to be losing my request

Re: Losing request attributes after validate()

2005-05-06 Thread David Johnson
attributes after validate() Hi all I apprear to be losing my request parameters after a form submit that fails in the Validate() of my Form. Has anyone seen this before? It works fine in all the other areas of the application, it's just this one page. the result is when I come back t

Re: Losing request attributes after validate()

2005-05-06 Thread Michael Jouravlev
I do have redirect=true set on the actionMapping that brings me to this page, and tthe browser should be caching field values. the weird thing is this works in other places If you want to keep redirect=true (I personally prefer redirects for better user experience), then you may want to

Re: Losing request attributes after validate()

2005-05-06 Thread David Johnson
a I see. Soam I adding scrope=session to the Form Bean or the Action Mapping? On 5/6/05, Michael Jouravlev [EMAIL PROTECTED] wrote: I do have redirect=true set on the actionMapping that brings me to this page, and tthe browser should be caching field values. the weird thing is

Re: Losing request attributes after validate()

2005-05-06 Thread David Johnson
also.. you're RIGHT!!! It's not working in other places either!!! here's a question. The way I thought it would work is that under the covers and before redirecting BACK to the page (assuming validate() fails) I thought it would take all the form attributes and put them back on the request to

RE: Losing request attributes after validate()

2005-05-06 Thread Barnett, Brian W.
To the action mapping -Original Message- From: David Johnson [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 1:52 PM To: Michael Jouravlev; Struts Users Mailing List Subject: Re: Losing request attributes after validate() a I see. Soam I adding scrope=session to the Form Bean

Re: Losing request attributes after validate()

2005-05-06 Thread Michael Jouravlev
Umm... This one html:text property= userName / pulls data from userName property of a form bean. So if the form bean has session scope, the value will be retained.. This one html-el:text property= portfolioName value=${portfolioName}/ pulls value from portfolioName, you need to check where this