1
vote
1answer
334 views

Ajax validation with Spring Webflow 2

I wonder if anyone can help. I'm putting together a Spring Webflow app, and am trying to work out what to do for validation. As per the documentation ...
0
votes
1answer
549 views

How to pass parameter to a method of validating the Spring Webflow?

How do I pass to the method validate {State} parameter other than a model? I have two objects. MyForm form object and the object of User, who may modify MyForm. View definition: <view-state ...
2
votes
1answer
2k views

Spring/Webflow problem with validation

Problem with validation I would have run the validation when the method "registered" In webflow: ... <transition on="registered" to="registeredAction" bind="true" validate="true" /> ... My ...
2
votes
2answers
228 views

Evaluating methods prior to validation in Spring Webflow

Webflow allows you to execute particular expressions via the <on-entry> element in a flow. However is it possible to somehow evaluate an expression BEFORE webflow attempts to validate the ...
1
vote
1answer
485 views

How can I make WebFlow abort the transitioning and just view the previous page when validation fails?

I have a Spring WebFlow app that causes me grey hairs. What I'm trying to accomplish if validation succeeds is to simply show the same view with different data. This works. However, when invalid data ...
1
vote
1answer
472 views

Accessing Errors-object in a Spring Webflow 2.0 test

How do I access the Errors-object created by spring when validation fails from a Spring Webflow 2.0 test (inherits from AbstractXmlFlowExecutionTests)? I tried using the ...
0
votes
1answer
1k views

Spring webflow validation

complete and utter newbie on spring webflow (and indeed, spring mvc). 30 minutes in... got the first page of my flow appearing, which happens to be a captcha, an input field and a submit button. The ...