Copy link to clipboard
Copied
Wondering if it's possible to force someone to fill in a certain field on a form before they can move along filling out the rest of the form. I wrote a Java script that will take them to line i want to be filled out but it would be nice if i can keep them from moving on filling out the rest of the form until the line is complete. I know could do a pop up alert but it would be nice to prevent going any further until the cell is completed. does this make sense?
Copy link to clipboard
Copied
Enter the following as an On Blur JavaScript in the actions tab of the field:
if(!event.value){event.target.setFocus()}
Copy link to clipboard
Copied
Enter the following as an On Blur JavaScript in the actions tab of the field:
if(!event.value){event.target.setFocus()}
Copy link to clipboard
Copied
PERFECT!!
Copy link to clipboard
Copied
This is technically possible, but a very bad idea. What if they wanted to save and close the file? Or if they entered the field by accident and want to move away from it? Preventing them from doing it can cause a lot of issues. If you implement this you can expect angry calls from your users, I can assure you.