Designer 7.0 form working with Reader 7.0.5 but not Reader 7.0.8


hello everyone,

i wondering if has had problem formed created using designer 7.0 working reader 7.0.5 no longer functions reader 7.0.8?

the form consists of numeric textbox n1 , 2 checkboxes c1[0] , c1[1].

all code done using formcalc.

here situation: if number in numeric box blank or not greater zero, neither check box can checked. both check boxes can not checked @ same time. if value in numeric box greater zero, checkboxes may or may not checked (again both can not checked @ same time).

n1 has code following code in exit event:

if (($.isnull) or ($.rawvalue le 0))
c1[0].rawvalue = 0 //if not positive value, checkboxes must blank
c1[1].rawvalue = 0
endif

c1[0] has following code in click , exit event

if (c1[0].rawvalue == 1)
c1[1].rawvalue = 0 //c1[0] , c1[1] can not both checked
endif

if ((n1.isnull) or (n1.rawvalue le 0))
$.rawvalue = 0 //uncheck if n1 not positive
endif

c1[1] has following code in click , exit event

if (c1[1].rawvalue == 1)
c1[0].rawvalue = 0 //c1[0] , c1[1] can not both checked
endif

if ((n1.isnull) or (n1.rawvalue le 0))
c1[1].rawvalue = 0 //uncheck if n1 not positive
endif

the above code worked described when form used in reader 7.0.5.

under reader 7.0.8 following happens:

if n1 blank or less or equal zero, both checkboxes can checked @ same time (this should not happen @ all) neither can unchecked

if n1 positive code (and checkboxes) function described.

i not sure if designer issue or professional/reader issue, posting here in other 2 spots.

any appreciated,

ben

i tried recreating form based on description , tried in few different versions. see same behavior in all, check boxes clickable, can unclicked, , can never have both checked regardless of numeric field value. i've attached form in case made mistake in trying recreate yours.

chris
adobe enterprise developer support


More discussions in LiveCycle pre-ES (6.x and 7.x) discussions


adobe

Comments