Re: validation and form display problem

2010-07-11 Thread Jake Vang
what i did was to override ValidationAware.hasErrors(). according to the docs, the workflow interceptor calls this method, if there are validation errors, it returns "input" and stops further execution of the action. i tried this... public boolean hasErrors() { boolean result = super.hasErrors();

Re: validation and form display problem

2010-07-11 Thread Burton Rhodes
That sounds like a classic 'prepare' problem. Take a look at the documentation on implementing Preparable in your action. You will want to initialize your backing beans inside the Prepare method in your action. That when 'input' is needed, your backing beans will be loaded. On 7/10/10, Jake Vang

RE: validation and form display problem

2010-07-10 Thread Martin Gainty
pter aucune responsabilité pour le contenu fourni. > Date: Sat, 10 Jul 2010 18:10:32 -0400 > Subject: validation and form display problem > From: vangj...@googlemail.com > To: user@struts.apache.org > > i have a form that i display. but to display that form, i have to > fetch some d

validation and form display problem

2010-07-10 Thread Jake Vang
i have a form that i display. but to display that form, i have to fetch some data from the database and then place that data on the valuestack (via backing beans). when the form is displayed, it expects that those backing beans should be populated. the form then posts to a save action. i have a --