.
Hi All,
I am using Joget v5.0 and have a form with validations on many form fields using Default validators of the text fields. The validation errors are seen correctly on the form.
When I click the submit button I show a message to user "Request is successfully submitted. Please wait for email confirmation" using below javascript :
$("form#ClaimForm").submit(function(e){
alert ("Request is successfully submitted. Please wait for email confirmation");
});
Problem :
The above alert is seen even when there are validation error on form fields.
When error occurs then actually my request is not submitted and I should not show above message.
I can't do validation check again in javascript as there are many complex validations on many fields.
Question:
How to suppress the alert message when validation error occurs in Joget v5.0 ?.