I'm pretty much a beginner at Livecycle, I have the entire form that i need created & ready to go, except I need to make one field required. I've selected user entered - required, but apparently that only makes the box red... I need some sort of error to pop up telling them that it must be filled out. The item name is TextField11[0]
can someone help me with the java script to make an error message pop up and where to put it at for this item?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
If you have any required field in a form then before submitting the form it will show an alert to fill the required fields before submitting the form.
You can also show the alert in the exit event of the TextField. In the exit event of the field write the following script.
if (this.rawValue == null)
{
app.alert("Please fill this field");
}
Thanks,
Bibhu.
Views
Replies
Total Likes
Hi,
If you have any required field in a form then before submitting the form it will show an alert to fill the required fields before submitting the form.
You can also show the alert in the exit event of the TextField. In the exit event of the field write the following script.
if (this.rawValue == null)
{
app.alert("Please fill this field");
}
Thanks,
Bibhu.
Views
Replies
Total Likes
thank you!!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies