Answered
I need to create a field that is required by the user, and if they tab or click out of this field, creates a pop-up that this "field is required". Is that even possible? Thanks again.
I need to create a field that is required by the user, and if they tab or click out of this field, creates a pop-up that this "field is required". Is that even possible? Thanks again.
if (getField("Text1").value=="") app.alert("This field is required!");
You may also want to include code to test for this required data before printing, submitting, or saving and issue an appropriate waining.
George Kaiser