Avatar

Correct answer by
Level 9

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.

View solution in original post