hi,
what easiest way of looping pages of forma, change value of specifi field (with same name on each page)?
thank
what easiest way of looping pages of forma, change value of specifi field (with same name on each page)?
thank
the easiest way not loop through pages @ all. like:
var nodelist = xfa.form.formname.resolvenodes("fieldname[*]");
for (i = 0; < nodelist.length; i++) {
nodelist.item(i).rawvalue = "something";
}
of course, if want these fields same name have same value easiest way set binding of 1 of fields global , not need more.
chris
adobe enterprise developer support
p.s. typed script window without trying it, there may syntax errors or spelling mistakes.
var nodelist = xfa.form.formname.resolvenodes("fieldname[*]");
for (i = 0; < nodelist.length; i++) {
nodelist.item(i).rawvalue = "something";
}
of course, if want these fields same name have same value easiest way set binding of 1 of fields global , not need more.
chris
adobe enterprise developer support
p.s. typed script window without trying it, there may syntax errors or spelling mistakes.
More discussions in LiveCycle pre-ES (6.x and 7.x) discussions
adobe
Comments
Post a Comment