Avatar

Level 4

Hi,

I suggest the following:

1) Change the property of privacy statement field as "User Entered - Optional" instead of "User Entered - Required".

2) Now add a validation script that satisfies the following psedudcode on the preSubmit event of the button while submission.

if(value of checkbox  == "Y")

{

   if(value of radiobutton == "Y")

   {

          submit;

   }

  else

{

         throw error;

         cancel submission;

  }  

}

else

{

     value of radiobutton == "N";

     submit;

}

If you further need any help in the form of coding, pls mail your form to kvdvijaykumar@gmail.com

Thanks,

VJ