using spring 3.0 I have page on web flow which has a password input field once the user finishes entering password i need to validate the password if it is right then display email id input field on the same page.

How can i achieve this in flow?

Thanks

link|improve this question

77% accept rate
this sounds like an AJAX spring-mvc question, spring web flow isn't going to handle this explicitly because you will need to write client javascript code – walnutmon Sep 27 '10 at 20:06
I am new spring world any example please? – Gauls Oct 1 '10 at 9:20
feedback

1 Answer

Your example is a page that has a conditionally displayed element. The easiest way to do this, if you are not using ajax, is to create 2 pages (called page1 and page2). Page1 has only the password field. Page2 has both the password field and the email field. After the user submits page1, if the password has been validated, transition to the view-state that displays page2. After the user submits page1, if the password is not valid, transition to the view-state that displays page1.

Dont flame me bro, this is an answer targeted at the percieved level of the questioner's experience (new).

link|improve this answer
The issue is the first page does not have any button – Gauls Oct 23 '10 at 22:38
You do not need a button to submit a form. You can submit it from JavaScript (basically: form.submit()). The 2 page approach, while not elegant, may be sufficient for your needs. My suggestion is: put a login button on the page to submit the form or react to the appropriate event with JavaScript in the password field and submit your form there. – DwB Oct 23 '10 at 23:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.