In the xFormsManager webapp, look for the following act.xpl
file.
And look for the following section:
<xforms:submission id="completeSubmission" ref="instance('taskoutput')" validate="true" action="/formManager/complete" method="post" replace="all">
<xforms:delete ev:event="xforms-submit" nodeset="instance('taskoutput')/@saved" at="0"/>
<xforms:toggle ev:event="xforms-submit" case="submit-wait"/>
<xforms:toggle ev:event="xforms-submit-done" case="refresh-all"/>
<xforms:action ev:event="xforms-submit-error">
<xforms:toggle case="viewTask"/>
<xforms:message level="modal">Can not complete task because the form is not correctly filled out</xforms:message>
</xforms:action>
</xforms:submission>
Then update the validate tag from
to
This will disable validation of the form, and will send a request to the server, as coded in the complete.xpl
file.