Re: Multi page forms

2015-02-20 Thread Lukasz Lenart
You meant "wizards"? If so please check this out https://cwiki.apache.org/confluence/display/S2PLUGINS/ActionFlow+Plugin 2015-02-20 9:59 GMT+01:00 Rajeswaran Dhandapani : > Hi All, > > We have the requirement to develop application with multi page forms. > > Mainly it c

Multi page forms

2015-02-20 Thread Rajeswaran Dhandapani
Hi All, We have the requirement to develop application with multi page forms. Mainly it consist of PREVIOUS , SAVE & NEXT buttons. I have made design to use single action class with model driven to handle the flow using a hidden page specific variable . Also I am skipping the validation du

Re: multi-page forms

2007-08-30 Thread Ted Husted
http://cwiki.apache.org/confluence/display/WW/Model+Driven+Interceptor HTH, Ted <http://www.husted.com/ted/blog/> On 8/29/07, Pavel Sapozhnikov <[EMAIL PROTECTED]> wrote: > In Struts1 you have the advantage to do create multi-page forms and validate > them too. Can you have the

multi-page forms

2007-08-29 Thread Pavel Sapozhnikov
In Struts1 you have the advantage to do create multi-page forms and validate them too. Can you have the same effect in Struts2. -- Pavel Sapozhnikov xFact, Inc [EMAIL PROTECTED]

Help with multi-page forms and getValidationKey

2004-10-21 Thread Wendy Smoak
I'm using DynaValidatorForm and LookupDispatchAction for a multi-page form, so I have the problem of needing different validations for each 'page' of the form. I learned about getValidationKey and am successfully returning a String that matches one of the tags in validation.xml. That's working.

Re: Validating single fields in multi-page forms

2004-09-08 Thread Bill Siggelkow
Well, if I recall from your original post you only wanted to validate the fields on the current page only. Validator provides support for a page attribute that you can use for wizard-style forms. Validator will use that attribute to validate form fields on the current page and any previous page

Re: Validating single fields in multi-page forms

2004-09-08 Thread Langdon Stevenson
Hi Bill Thanks for your suggestion. I have switched to ValidatorActionForm for my validation and now get the desired result (validation of only the fields that appear on the specific page). So problem solved! I am curious though about your interpretation of "wizard style". The form is indeed

Re: Validating single fields in multi-page forms

2004-09-04 Thread Bill Siggelkow
If I understand you correctly, you are using a form for multiple-pages but not in a wizard fashion. The best way to do this is to use path-mapping for validator -- in this case your form extends ValidatorActionForm (or DynaValidatorActionForm) and you specify the path to the action for the form

Validating single fields in multi-page forms

2004-09-04 Thread Langdon Stevenson
Hi I have a multi-page form (about 8 pages total) that take just a few fields per page that I am implementing in Struts (this is my first Struts project). I have succeeded in setting up and implementing validation using the Validator Framework. Each page passes a "page" number and all validat