I do have a background in JavaScript.
I created the form with Livecycle Designer. My code looks like this:
if(Subform4.Table1.Row2.CheckBox4.rawValue == 1 && Subform4.Table1.Row2.sharetenet1b.rawValue != null && Subform4.Table1.Row2.sharetenet1c.rawValue != null && Subform4.Table1.Row2.sharetenet1e.rawValue != null)
{
app.launchURL('https://cform.mwg.nj.gov/default.aspx', true);
}
if(Subform4.Table1.Row2.CheckBox4.rawValue == 0 && Subform4.Table1.Row2.sharetenet1b.rawValue != null && Subform4.Table1.Row2.sharetenet1c.rawValue != null && Subform4.Table1.Row2.sharetenet1e.rawValue != null)
{
xfa.host.messageBox("You must check the signature check box before submitting!", "Signature Fields", 0);
}
My problem is the code does not work for added rows in the table. I know how to carry formulas and calculations to added rows, but I do not know how to incorporate this code into added rows in the table. Any assistance is greatly appreciated.
Ricky