Multiple Values to Text Field
i have subform 30 checkboxes. want rawvalues of these boxes displayed in (1) text field. can 1 value appear not multiple. current script : calculated event. this. rawvalue= checkbox15.rawvalue; this.rawvalue=checkbox16.rawvalue. have checkbox15 set 15 , checkbox16 set 16. trying to 1 text feild show 15, 16, etc, etc, checkboxes checked.
thank help-
you need concatenate values of checkboxes.
try:
this.rawvalue = checkbox15.rawvalue + " " + checkbox16.rawvalue + " " + checkbox17.rawvalue + " " + ...;
More discussions in LiveCycle Designer
adobe
Comments
Post a Comment