I'm using struts2-jquery-plugin-3.7.0
. I'm looking for a component that can create a workflow by exhibiting (creating) multiple steps in a single form on a page in which the current step is processed partially and display the next step if and only if the current step passes validations.
All the steps must be performed sequentially in a defined order.
For example, in a user registration form, personnel information of a user must be filled up first before filling up her contact information and so on.
If any validation is violated while filling up personnel information then, the next step (to fill up contact information) must not be executed. It should only be executed, if no validation is violated in personnel information.
Currently, I can only see <sj:tabbedpanel>
which doesn't seem to fulfill these requirements.
Is there any component that can be used in Struts2 to fulfill these requirements?
Long story short : I'm looking for exactly the same component as provided by PrimeFaces <p:wizard>
Anyway, I need to create a workflow in which a single page of activities can be exhibited in different and sequential steps. Is there a handy way that can make it possible?