Turned out it had to do with the <stripes:image> tag used to submit the
form. It only had the name="verify" attribute. When using IE, hitting the
return key rather than clicking the image to submit the form resulted in no
event being sent. I was hopping that adding vaue="verify" attribute would
take care of it but it did not!. Here is what we end up doing:

     <div class=*"buttonContainer"*>

          <s:image name=*"submit"* src=*"/images/go.gif" */>

          <!-- To help IE submit gracefully. Do not remove this -->

          <s:text name=*"text"* style=*"display: none;"* />

      </div>



On 9 November 2011 18:48, Aaron Stromas <passog...@gmail.com> wrote:

> Greetings,
>
> Can anyone offer any thought on the following situation:
>
>     @DefaultHandler
>     public Resolution view() {...}
>
>     @HandlesEvent("verify")
>     public Resolution submit() {...}
>
>     @ValidationMethod(on = "verify")
>     public void validateAnswers(ValidationErrors errors) {...}
>
> For the most part, when the validateAnswers finds answers, it returns
> control to the submit method, however, once in a while, it returns control
> to the default handler (view). Any insights will be greatly appreciated.
>
> -a
>
>
> --
> Aaron Stromas
> Mobile: +1 240 271 6458
>
>


-- 
Aaron Stromas
Mobile: +1 703 203 9169
------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to