I have a form with many fields for user.
I have a submit button at end that will create xml at end. that works.
When a required field is not filled in, user gets error message. however it keeps on processing and creates the xml.
When the user gets an error, I want to stop the processing at that point and not validate any further and create an xml until all fields are correct
I have not worked a lot with javascript and has been over a year since I have done anything. any help is appreciated.
my code
MAT100.#subform[0].rad_subform.field_off_num::preSubmit:form - (JavaScript, client)
if ((this.rawValue == null) || (this.rawValue == ""))
{ app.alert("Please enter Field Office phone number in 8605943500 format prior to submitting.");
}
George Kaiser