Skip to main content

Hey everyone, I'm having issues with users pushing enter (instead of Tab) after filling in fields and the form isubmits before they complete it. How do I change this setting so the user has to physically click the submit button for the form to submit?

Thanks

Kassie

Hi there!

I found this answer in the community that may help you:

https://community.nintex.com/message/27748

Let me know if it does!

Cheers,

Rhia


Dear Kassie McCool

Use the following script:

NWF$("form").bind("keypress", function (e) {
if (e.keyCode == 13) {
  return false;
}
});

Cheers... happy.png


This worked for me thank you. For newbies...you enter this code into the Form Settings under Custom JavaScript.


Reply