I want to tell user which textboxes are not filled in a group of 100s of mandatory fields. So i created a test script. I have written following code for that textbox's properties using-> Format->Format Category=Custom.
As i m new to this work i dont know whether i have done correct or totally wrong. Do i need to do this on button click? If yes i m unable to find the location on button properties where i can write this script. Thats why i wrote on textbox properties.
______________________________________________
var msg = false;
if (this.getField("Initials").value == '')
{
var error = "Please fill Initials1";
msg = true;
}
if (msg){
app.alert(error);
}
______________________________________________
Pls help.
Thanks,
Hina