UI Form is not getting submitted on click of Submit button but doesn't throw

UI Form is not getting submitted on click of Submit button but doesn't throw any error as well. No JS preventing form submission. No exceptions or alerts encountered. On checking production logs, nothing is found alarming. Any suggestions on how to debug....

OriginalPostID-102651

OriginalPostID-102651

  Discussion posts and replies are publicly visible

Parents
  • This can happen when:

    1. The validation of a field is failing but you forgot to put a validation message so there's no error below the field. To test just put an alert in the failedValidation even of the submit button.

    2. The validation of a field is failing but you used JS to hide that field meaning you will never get notified of the validation error.

    3. Or the field for which validation is failing is in a tabbed container in a tab that you are not currently at and you are not seeing the message.
Reply
  • This can happen when:

    1. The validation of a field is failing but you forgot to put a validation message so there's no error below the field. To test just put an alert in the failedValidation even of the submit button.

    2. The validation of a field is failing but you used JS to hide that field meaning you will never get notified of the validation error.

    3. Or the field for which validation is failing is in a tabbed container in a tab that you are not currently at and you are not seeing the message.
Children
No Data