Hi,
I have a form with a huge number of fields and validations on their validate event.
The form has a submit button with the following routine:
myDoc.submitForm(
{
cURL: URL,
cSubmitAs: "PDF"
}
);
My goal is that the user will be able to submit the form only once.
If I hide the submit button after this script there is a chance that one of the fields not pass the validation, the button disappear and user is not able to submit any more.
Otherwise nothing avoid from the user to submit the form multiple times.
Anyone has an idea?