Currently if a user hits enter/return on a form input - the form will submit. I think we can improve the UX of our specific scenario by disallowing this and instead triggering form submit on the array change.
Yes, good question and answer from @sid. I’d been thinking the same the other day. I have ctrl+enter mapped to submit forms but was wondering why some of them submitted with just enter… now I know
I have a multi-step form that works great. The submit button is only displayed on the final step. But even if you are on the first step it wants to submit the form if you press Enter Key. How can I prevent the Enter key from submitting the form?
As there is no native method you can implement a little script to your layout page will disable enter for all forms using that layout. Or just add it to the page itself.
I though of that, but how do I set up my update form in Server Connect if it isn't a Serverconnect form? Can you set a form as a serverconnect form but not have an action?
I think @Cheese was suggesting keeping the form as it is, but just changing the button type from ’submit’ to ‘button’. This prevents the enter action and you just add a dynamic action to the button to submit the form.
@brad Apologies, I am entirely consumed by a major Project at the moment and forgot to respond to your question, but @bpj explained it above perfectly.