action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T20:21:10Z http://stackoverflow.com/feeds/question/828534 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d 0 action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml) vky 2009-05-06T08:08:15Z 2009-10-30T11:00:47Z <p>Hi All, I am working on struts2. I have two fields in my action-validation.xml. I want if validation get fails at first field it will go to some jsp page (say a.jsp) and if validation get fails at second field then it will go to another jsp (say b.jsp). As it always return "input" when validation fails so currently I can target only one jsp page against it. Please provide solution if possible? Thanks in advance.</p> http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/830171#830171 -1 Answer by Rich Kroll for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml) Rich Kroll 2009-05-06T15:25:27Z 2009-05-06T15:25:27Z <p>You will need to create custom validation method in your action, return a custom resut:</p> <pre><code>public void validate() { if(!isFieldAValid()) { return "DISPLAY_A"; } if(!isFieldBValid()){ return "DISPLAY_B"; } } </code></pre> <p>Then in your struts.xml you will need to add the custom results:</p> <pre><code>&lt;result name="DISPLAY_A"&gt;/a.jsp&lt;/result&gt; &lt;result name="DISPLAY_B"&gt;/b.jsp&lt;/result&gt; </code></pre> http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/934483#934483 0 Answer by Euphy for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml) Euphy 2009-06-01T11:43:00Z 2009-06-01T11:43:00Z <p>Re Rich's suggestion - a void method can't return a String so validate() can't return anything surely?</p> http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/1103243#1103243 0 Answer by Louis for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml) Louis 2009-07-09T11:13:13Z 2009-07-09T11:13:13Z <p>How this will work? validate() is a void method, no return allow, how can you return "DISPLAY_A" ?</p> http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/1113341#1113341 0 Answer by harsh for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml) harsh 2009-07-11T09:41:42Z 2009-07-11T09:41:42Z <p>rich's solution is quiet practicable if the logic is applied in the action being called on submit....</p> <pre><code>public String actionBeingCalledOnSubmit() { </code></pre> <p>if(!isFieldAValid()) { return "DISPLAY_A"; }</p> <p>if(!isFieldBValid()){ return "DISPLAY_B"; } }</p> http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/1649170#1649170 0 Answer by Kris for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml) Kris 2009-10-30T11:00:47Z 2009-10-30T11:00:47Z <p>void return types can't return anything</p> <p>Did you design a work around?</p>