Answered
export value
Hi, I have 5 checkboxes named C1-C5 is it possible to show their export values in an alert when a button is pushed?
Hi, I have 5 checkboxes named C1-C5 is it possible to show their export values in an alert when a button is pushed?
Yes, you can set export values using array, like this:
var eValues = ["A", "B", "C", "D", "E"];
for (var i=1; i<=5; i++) {
this.getField("C" + i).exportValues = [eValues[i - 1]];}
Change loop number to the number of fields you have and fill the array accordingly.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.