How is it possible to set the target of an <sj:submit>
to top.
As an sample login page should open new AFTER the ajax base validations ends:
<s:form id="loginForm" action="login-process-result" namespace="/security" >
<sj:submit button="true"
validateFunction="formValidator" validate="true" key="form.btn.login />
</s:form>
I tried sj:submit targets
and s:form target
, none of the worked!
I do not want to use s:submit
as the form validation must be done via Ajax.
To follow the struts2 jquery
ajax validation
andtarget
concept, I used below solution:The login-form.jsp (no target is set):
The action (with validations)
And finally the result form which do the trick, is a normal jsp which changes the window location via javascript
The page shows an success message and make an small delay before changing the url, which is optional and can be removed.