I have a javascript function to run h: or a4j: commanButton. When javascript function is called, action button runs action but after that page is not redirected. I am using Seam 2.2 and RichFaces 3.3.3 What is the problem here? Thanks.
function submitForm(){
document.getElementById('myForm:save').click();
// does not redirect.
//document.getElementById('myForm').submit();
}
Even if I use submit() page is not redirected.
Form:
<h:form id="myForm">
//some fields
<h:commandButton id="save" value="Save"
action="#{personHome.persist}" />
</h:form>